chore(tvix): Bump versions of all compatible deps via cargo upgrade

This updates all the dependencies and their "minimum" versions in
Cargo.{lock,toml} to the latest compatible version using `cargo-edit`'s
`cargo upgrade` command that will eventually be merged into `cargo
update`.

Change-Id: Iccb2aa4a1c84a0465222244a0bd0cafe2a82e781
Reviewed-on: https://cl.tvl.fyi/c/depot/+/12388
Reviewed-by: flokli <flokli@flokli.de>
Autosubmit: Ilan Joselevich <personal@ilanjoselevich.com>
Tested-by: BuildkiteCI
This commit is contained in:
Ilan Joselevich 2024-08-29 00:42:29 +03:00 committed by clbot
parent 02ee441626
commit 2945a359b4
15 changed files with 1207 additions and 689 deletions

View file

@ -14,25 +14,25 @@ test = []
default = ["async", "wire", "nix-compat-derive"]
[dependencies]
bitflags = "2.4.1"
bstr = { version = "1.6.0", features = ["alloc", "unicode", "serde"] }
bitflags = "2.6.0"
bstr = { version = "1.10.0", features = ["alloc", "unicode", "serde"] }
data-encoding = "2.6.0"
ed25519 = "2.2.3"
ed25519-dalek = "2.1.0"
ed25519-dalek = "2.1.1"
enum-primitive-derive = "0.3.0"
glob = "0.3.0"
glob = "0.3.1"
mimalloc = "0.1.43"
nom = "7.1.3"
num-traits = "0.2.18"
num-traits = "0.2.19"
serde = { version = "1.0", features = ["derive"] }
serde_json = "1.0"
sha2 = "0.10.6"
thiserror = "1.0.38"
tracing = "0.1.37"
sha2 = "0.10.8"
thiserror = "1.0.63"
tracing = "0.1.40"
[dependencies.bytes]
optional = true
version = "1.6.1"
version = "1.7.1"
[dependencies.nix-compat-derive]
path = "../nix-compat-derive"
@ -40,25 +40,25 @@ optional = true
[dependencies.tokio]
optional = true
version = "1.32.0"
version = "1.39.3"
features = ["io-util", "macros"]
[dependencies.pin-project-lite]
optional = true
version = "0.2.13"
version = "0.2.14"
[dev-dependencies]
criterion = { version = "0.5", features = ["html_reports"] }
futures = { version = "0.3.30", default-features = false, features = ["executor"] }
hex-literal = "0.4.1"
lazy_static = "1.4.0"
lazy_static = "1.5.0"
mimalloc = "0.1.43"
pretty_assertions = "1.4.0"
rstest = "0.19.0"
serde_json = "1.0"
smol_str = "0.2.2"
tokio-test = "0.4.3"
zstd = "^0.13.0"
tokio-test = "0.4.4"
zstd = "^0.13.2"
[[bench]]
name = "derivation_parse_aterm"