Upgrade to strum 0.25.

This commit is contained in:
Nick Mathewson 2023-06-21 09:12:36 -04:00
parent f14a87e4c8
commit 0505579497
9 changed files with 13 additions and 13 deletions

10
Cargo.lock generated
View File

@ -3663,24 +3663,24 @@ checksum = "73473c0e59e6d5812c5dfe2a064a6444949f089e20eec9a2e5506596494e4623"
[[package]] [[package]]
name = "strum" name = "strum"
version = "0.24.1" version = "0.25.0"
source = "registry+https://github.com/rust-lang/crates.io-index" source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "063e6045c0e62079840579a7e47a355ae92f60eb74daaf156fb1e84ba164e63f" checksum = "290d54ea6f91c969195bdbcd7442c8c2a2ba87da8bf60a7ee86a235d4bc1e125"
dependencies = [ dependencies = [
"strum_macros", "strum_macros",
] ]
[[package]] [[package]]
name = "strum_macros" name = "strum_macros"
version = "0.24.3" version = "0.25.0"
source = "registry+https://github.com/rust-lang/crates.io-index" source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "1e385be0d24f186b4ce2f9982191e7101bb737312ad61c1f2f984f34bcf85d59" checksum = "fe9f3bd7d2e45dcc5e265fbb88d6513e4747d8ef9444cf01a533119bce28a157"
dependencies = [ dependencies = [
"heck", "heck",
"proc-macro2", "proc-macro2",
"quote", "quote",
"rustversion", "rustversion",
"syn 1.0.109", "syn 2.0.18",
] ]
[[package]] [[package]]

View File

@ -143,7 +143,7 @@ void = "1"
anyhow = "1.0.23" anyhow = "1.0.23"
once_cell = "1.9" once_cell = "1.9"
pin-project = "1" pin-project = "1"
strum = { version = "0.24", features = ["derive"] } strum = { version = "0.25", features = ["derive"] }
tempfile = "3.3" tempfile = "3.3"
tokio-crate = { package = "tokio", version = "1.7", features = [ tokio-crate = { package = "tokio", version = "1.7", features = [
"rt", "rt",

View File

@ -32,7 +32,7 @@ regex = { version = "1", default-features = false, features = ["std"] }
serde = { version = "1.0.103", features = ["derive"] } serde = { version = "1.0.103", features = ["derive"] }
serde_ignored = "0.1.3" serde_ignored = "0.1.3"
shellexpand = { version = "3.0", optional = true } shellexpand = { version = "3.0", optional = true }
strum = { version = "0.24", features = ["derive"] } strum = { version = "0.25", features = ["derive"] }
thiserror = "1" thiserror = "1"
toml = "0.7.2" toml = "0.7.2"
tor-basic-utils = { path = "../tor-basic-utils", version = "0.7.1" } tor-basic-utils = { path = "../tor-basic-utils", version = "0.7.1" }

View File

@ -79,7 +79,7 @@ safelog = { path = "../safelog", version = "0.3.1" }
scopeguard = "1" scopeguard = "1"
serde = { version = "1.0.103", features = ["derive"] } serde = { version = "1.0.103", features = ["derive"] }
signature = "1" signature = "1"
strum = { version = "0.24", features = ["derive"] } strum = { version = "0.25", features = ["derive"] }
thiserror = "1" thiserror = "1"
time = { version = "0.3", features = ["formatting", "parsing"] } time = { version = "0.3", features = ["formatting", "parsing"] }
tor-basic-utils = { path = "../tor-basic-utils", version = "0.7.1" } tor-basic-utils = { path = "../tor-basic-utils", version = "0.7.1" }

View File

@ -27,7 +27,7 @@ backtrace = { version = "0.3.39", optional = true }
derive_more = "0.99.3" derive_more = "0.99.3"
futures = "0.3" futures = "0.3"
once_cell = "1" once_cell = "1"
strum = { version = "0.24", features = ["derive"] } strum = { version = "0.25", features = ["derive"] }
thiserror = "1" thiserror = "1"
[dev-dependencies] [dev-dependencies]

View File

@ -62,7 +62,7 @@ rand = "0.8"
retain_mut = "0.1.3" retain_mut = "0.1.3"
safelog = { path = "../safelog", version = "0.3.1" } safelog = { path = "../safelog", version = "0.3.1" }
serde = { version = "1.0.103", features = ["derive"] } serde = { version = "1.0.103", features = ["derive"] }
strum = { version = "0.24", features = ["derive"] } strum = { version = "0.25", features = ["derive"] }
thiserror = "1" thiserror = "1"
tor-basic-utils = { path = "../tor-basic-utils", version = "0.7.1" } tor-basic-utils = { path = "../tor-basic-utils", version = "0.7.1" }
tor-config = { path = "../tor-config", version = "0.9.1" } tor-config = { path = "../tor-config", version = "0.9.1" }

View File

@ -43,7 +43,7 @@ rand_core = "0.6.2"
retry-error = { path = "../retry-error", version = "0.4.1" } retry-error = { path = "../retry-error", version = "0.4.1" }
safelog = { path = "../safelog", version = "0.3.1" } safelog = { path = "../safelog", version = "0.3.1" }
slotmap = "1.0.6" slotmap = "1.0.6"
strum = { version = "0.24", features = ["derive"] } strum = { version = "0.25", features = ["derive"] }
thiserror = "1" thiserror = "1"
tor-bytes = { path = "../tor-bytes", version = "0.7.1" } tor-bytes = { path = "../tor-bytes", version = "0.7.1" }
tor-cell = { path = "../tor-cell", version = "0.11.0", features = ["hs"] } tor-cell = { path = "../tor-cell", version = "0.11.0", features = ["hs"] }

View File

@ -42,7 +42,7 @@ itertools = "0.10.1"
safelog = { path = "../safelog", version = "0.3.1" } safelog = { path = "../safelog", version = "0.3.1" }
serde = { version = "1.0.103", features = ["derive"] } serde = { version = "1.0.103", features = ["derive"] }
serde_with = "3.0.0" serde_with = "3.0.0"
strum = { version = "0.24", features = ["derive"] } strum = { version = "0.25", features = ["derive"] }
thiserror = "1" thiserror = "1"
tor-basic-utils = { path = "../tor-basic-utils", version = "0.7.1" } tor-basic-utils = { path = "../tor-basic-utils", version = "0.7.1" }
tor-bytes = { path = "../tor-bytes", version = "0.7.1" } tor-bytes = { path = "../tor-bytes", version = "0.7.1" }

View File

@ -57,7 +57,7 @@ rand = "0.8"
serde = { version = "1.0.103", features = ["derive"] } serde = { version = "1.0.103", features = ["derive"] }
signature = "1" signature = "1"
static_assertions = "1" static_assertions = "1"
strum = { version = "0.24", features = ["derive"] } strum = { version = "0.25", features = ["derive"] }
thiserror = "1" thiserror = "1"
time = { version = "0.3.17", features = ["macros"], optional = true } time = { version = "0.3.17", features = ["macros"], optional = true }
tor-basic-utils = { path = "../tor-basic-utils", version = "0.7.1" } tor-basic-utils = { path = "../tor-basic-utils", version = "0.7.1" }