Skip to content

Commit

Permalink
Update dependencies
Browse files Browse the repository at this point in the history
  • Loading branch information
fnordpig committed Jun 1, 2023
1 parent 9c3b43f commit 4a346ec
Show file tree
Hide file tree
Showing 5 changed files with 196 additions and 26 deletions.
15 changes: 15 additions & 0 deletions .vscode/tasks.json
Original file line number Diff line number Diff line change
@@ -0,0 +1,15 @@
{
"version": "2.0.0",
"tasks": [
{
"type": "cargo",
"command": "build",
"problemMatcher": [
"$rustc",
"$rust-panic"
],
"group": "build",
"label": "rust: cargo build"
}
]
}
192 changes: 173 additions & 19 deletions Cargo.lock

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

10 changes: 5 additions & 5 deletions Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -7,14 +7,14 @@ repository = "https://github.com/max-niederman/ttyper.git"
homepage = "https://github.com/max-niederman/ttyper"
license = "MIT"
authors = ["Max Niederman <max@maxniederman.com>"]
edition = "2018"
edition = "2021"

[dependencies]
structopt = "0.3"
dirs = "4.0"
crossterm = "0.25"
dirs = "^5.0"
crossterm = "^0.26"
rust-embed = "6.4"
toml = "0.5"
toml = "^0.7"

[dependencies.tui]
version = "0.19"
Expand All @@ -30,4 +30,4 @@ version = "1.0"
features = ["derive"]

[build-dependencies]
dirs = "4.0"
dirs = "^5.0"
2 changes: 1 addition & 1 deletion build.rs
Original file line number Diff line number Diff line change
Expand Up @@ -48,7 +48,7 @@ fn main() -> std::io::Result<()> {
.expect("Couldn't find the source directory.")
.join("resources")
.join("runtime");
copy(&resources_path, &install_path);
copy(resources_path, &install_path);

Ok(())
}
Loading

0 comments on commit 4a346ec

Please sign in to comment.