tool/shared: make constraints less concrete and drop lockfile
In a library, a lockfile is not really needed per se and we should avoid creating duplicate dependencies as much as possible.
This commit is contained in:
parent
923567d08a
commit
fd188a0e32
File diff suppressed because it is too large
Load Diff
|
@ -6,23 +6,23 @@ edition = "2021"
|
||||||
# See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html
|
# See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html
|
||||||
|
|
||||||
[dependencies]
|
[dependencies]
|
||||||
anyhow = "1.0.72"
|
anyhow = "1"
|
||||||
clap = { version = "4.3.17", features = ["derive"] }
|
clap = { version = "4.3", features = ["derive"] }
|
||||||
goblin = "0.7.1"
|
goblin = "0.7"
|
||||||
nix = { version = "0.26.2", default-features = false, features = [ "fs" ] }
|
nix = { version = "0.26", default-features = false, features = [ "fs" ] }
|
||||||
serde = { version = "1.0.172", features = ["derive"] }
|
serde = { version = "1", features = ["derive"] }
|
||||||
serde_json = "1.0.103"
|
serde_json = "1"
|
||||||
tempfile = "3.6.0"
|
tempfile = "3.6.0"
|
||||||
bootspec = "1.0"
|
bootspec = "1"
|
||||||
walkdir = "2.3.3"
|
walkdir = "2"
|
||||||
time = "0.3.23"
|
time = "0.3"
|
||||||
sha2 = "0.10.7"
|
sha2 = "0.10"
|
||||||
# Keep the fastrand version aligned with the one from tempfile to avoid two
|
# Keep the fastrand version aligned with the one from tempfile to avoid two
|
||||||
# different versions.
|
# different versions.
|
||||||
fastrand = "2.0.0"
|
fastrand = "2.0.0"
|
||||||
log = { version = "0.4.19", features = ["std"] }
|
log = { version = "0.4", features = ["std"] }
|
||||||
stderrlog = "0.5.4"
|
stderrlog = "0.5"
|
||||||
indoc = "2.0.3"
|
indoc = "2"
|
||||||
|
|
||||||
[dev-dependencies]
|
[dev-dependencies]
|
||||||
assert_cmd = "2.0.12"
|
assert_cmd = "2.0.12"
|
||||||
|
|
Loading…
Reference in New Issue