Skip to content

Commit

Permalink
fix: removed the patch version of the dependencies in Cargo.toml
Browse files Browse the repository at this point in the history
This avoids making an update for each patch of each dependency
  • Loading branch information
Etto48 committed May 25, 2024
1 parent 553c6d0 commit 347feff
Showing 1 changed file with 19 additions and 19 deletions.
38 changes: 19 additions & 19 deletions Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -20,22 +20,22 @@ build = "build.rs"
winres = "0.1"

[dependencies]
capstone = "0.12.0"
clap = { version = "4.5.4", features = ["derive"] }
crossterm = { version = "0.27.0", features = ["serde"] }
dirs = "5.0.1"
keystone-engine = "0.1.0"
object = "0.35.0"
pathdiff = "0.2.1"
pdb = "0.8.0"
ratatui = { version = "0.26.3", features = ["serde"] }
regex = "1.10.4"
russh = "0.43.0"
russh-keys = "0.43.0"
russh-sftp = "2.0.0"
serde = { version = "1.0.202", features = ["derive"] }
serde_json = "1.0.117"
shellexpand = "3.1.0"
symbolic-demangle = "12.8.0"
tempfile = "3.10.1"
tokio = "1.37.0"
capstone = "0.12"
clap = { version = "4.5", features = ["derive"] }
crossterm = { version = "0.27", features = ["serde"] }
dirs = "5.0"
keystone-engine = "0.1"
object = "0.35"
pathdiff = "0.2"
pdb = "0.8"
ratatui = { version = "0.26", features = ["serde"] }
regex = "1.10"
russh = "0.43"
russh-keys = "0.43"
russh-sftp = "2.0"
serde = { version = "1.0", features = ["derive"] }
serde_json = "1.0"
shellexpand = "3.1"
symbolic-demangle = "12.8"
tempfile = "3.10"
tokio = "1.37"

0 comments on commit 347feff

Please sign in to comment.