diff --git a/Cargo.lock b/Cargo.lock index c4f908f..9b4142f 100644 --- a/Cargo.lock +++ b/Cargo.lock @@ -1,6 +1,6 @@ # This file is automatically @generated by Cargo. # It is not intended for manual editing. -version = 3 +version = 4 [[package]] name = "addr2line" @@ -1332,9 +1332,9 @@ checksum = "2c6201b9ff9fd90a5a3bac2e56a830d0caa509576f0e503818ee82c181b3437a" [[package]] name = "heck" -version = "0.4.1" +version = "0.5.0" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "95505c38b4572b2d910cecb0281560f54b440a19336cbbcb27bf6ce6adc6f5a8" +checksum = "2304e00983f87ffb38b55b444b5e3b60a884b5d30c0fca7d82fe33449bbe55ea" [[package]] name = "hermit-abi" @@ -2334,12 +2334,6 @@ dependencies = [ "semver 1.0.3", ] -[[package]] -name = "rustversion" -version = "1.0.6" -source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "f2cc38e8fa666e2de3c4aba7edeb5ffc5246c1c2ed0e3d17e560aeeba736b23f" - [[package]] name = "ryu" version = "1.0.9" @@ -2784,23 +2778,22 @@ checksum = "213701ba3370744dcd1a12960caa4843b3d68b4d1c0a5d575e0d65b2ee9d16c0" [[package]] name = "strum" -version = "0.25.0" +version = "0.27.2" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "290d54ea6f91c969195bdbcd7442c8c2a2ba87da8bf60a7ee86a235d4bc1e125" +checksum = "af23d6f6c1a224baef9d3f61e287d2761385a5b88fdab4eb4c6f11aeb54c4bcf" dependencies = [ "strum_macros", ] [[package]] name = "strum_macros" -version = "0.25.0" +version = "0.27.2" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "fe9f3bd7d2e45dcc5e265fbb88d6513e4747d8ef9444cf01a533119bce28a157" +checksum = "7695ce3845ea4b33927c055a39dc438a45b059f7c1b3d91d38d10355fb8cbca7" dependencies = [ "heck", "proc-macro2", "quote", - "rustversion", "syn 2.0.25", ] diff --git a/crates/alignment/Cargo.toml b/crates/alignment/Cargo.toml index 71bcec2..29c7641 100644 --- a/crates/alignment/Cargo.toml +++ b/crates/alignment/Cargo.toml @@ -10,4 +10,4 @@ edition = "2021" rand = "0.8" rand_pcg = "0.3" serde = { version = "1", features = ["derive"] } -strum = { version = "0.25", features = ["derive"] } +strum = { version = "0.27", features = ["derive"] } diff --git a/crates/attack/Cargo.toml b/crates/attack/Cargo.toml index 16e5a05..672cba1 100644 --- a/crates/attack/Cargo.toml +++ b/crates/attack/Cargo.toml @@ -9,4 +9,4 @@ edition = "2021" [dependencies] dice_roller = { path = "../dice_roller" } serde = { version = "1", features = ["derive"] } -strum = { version = "0.25", features = ["derive"] } +strum = { version = "0.27", features = ["derive"] } diff --git a/crates/background/Cargo.toml b/crates/background/Cargo.toml index a29749b..c6fb50e 100644 --- a/crates/background/Cargo.toml +++ b/crates/background/Cargo.toml @@ -20,7 +20,7 @@ rand = "0.8" rand_pcg = "0.3" serde = { version = "1", features = ["derive"] } stats = { path = "../stats" } -strum = { version = "0.25", features = ["derive"] } +strum = { version = "0.27", features = ["derive"] } trinkets = { path = "../trinkets" } [dev-dependencies] diff --git a/crates/character/Cargo.toml b/crates/character/Cargo.toml index 300f66a..7f6fcdf 100644 --- a/crates/character/Cargo.toml +++ b/crates/character/Cargo.toml @@ -23,7 +23,7 @@ rand = "0.8" rand_pcg = "0.3" serde = { version = "1", features = ["derive"] } stats = { path = "../stats" } -strum = { version = "0.25", features = ["derive"] } +strum = { version = "0.27", features = ["derive"] } trinkets = { path = "../trinkets" } [dev-dependencies] diff --git a/crates/characteristics/Cargo.toml b/crates/characteristics/Cargo.toml index 640f826..a582e1e 100644 --- a/crates/characteristics/Cargo.toml +++ b/crates/characteristics/Cargo.toml @@ -11,7 +11,7 @@ dice_roller = { path = "../dice_roller" } rand = "0.8" rand_pcg = "0.3" serde = { version = "1", features = ["derive"] } -strum = { version = "0.25", features = ["derive"] } +strum = { version = "0.27", features = ["derive"] } [dev-dependencies] insta = "1" diff --git a/crates/citation/Cargo.toml b/crates/citation/Cargo.toml index 6e314e5..5a2ae16 100644 --- a/crates/citation/Cargo.toml +++ b/crates/citation/Cargo.toml @@ -8,4 +8,4 @@ edition = "2021" [dependencies] serde = { version = "1", features = ["derive"] } -strum = { version = "0.25", features = ["derive"] } +strum = { version = "0.27", features = ["derive"] } diff --git a/crates/class/Cargo.toml b/crates/class/Cargo.toml index a130508..4b1d9fa 100644 --- a/crates/class/Cargo.toml +++ b/crates/class/Cargo.toml @@ -19,7 +19,7 @@ rand = "0.8" rand_pcg = "0.3" serde = { version = "1", features = ["derive"] } stats = { path = "../stats" } -strum = { version = "0.25", features = ["derive"] } +strum = { version = "0.27", features = ["derive"] } [dev-dependencies] insta = "1" diff --git a/crates/deities/Cargo.toml b/crates/deities/Cargo.toml index 78e737c..edfaf59 100644 --- a/crates/deities/Cargo.toml +++ b/crates/deities/Cargo.toml @@ -11,7 +11,7 @@ alignment = { path = "../alignment" } rand = "0.8" rand_pcg = "0.3" serde = { version = "1", features = ["derive"] } -strum = { version = "0.25", features = ["derive"] } +strum = { version = "0.27", features = ["derive"] } [dev-dependencies] insta = "1" diff --git a/crates/dice_roller/Cargo.toml b/crates/dice_roller/Cargo.toml index 491343b..e0dc6a1 100644 --- a/crates/dice_roller/Cargo.toml +++ b/crates/dice_roller/Cargo.toml @@ -10,4 +10,4 @@ edition = "2021" rand = "0.8" rand_pcg = "0.3" serde = { version = "1", features = ["derive"] } -strum = { version = "0.25", features = ["derive"] } +strum = { version = "0.27", features = ["derive"] } diff --git a/crates/gear/Cargo.toml b/crates/gear/Cargo.toml index 5600704..02847dd 100644 --- a/crates/gear/Cargo.toml +++ b/crates/gear/Cargo.toml @@ -9,4 +9,4 @@ edition = "2021" [dependencies] dice_roller = { path = "../dice_roller" } serde = { version = "1", features = ["derive"] } -strum = { version = "0.25", features = ["derive"] } +strum = { version = "0.27", features = ["derive"] } diff --git a/crates/languages/Cargo.toml b/crates/languages/Cargo.toml index 13cdb90..f1931f4 100644 --- a/crates/languages/Cargo.toml +++ b/crates/languages/Cargo.toml @@ -11,4 +11,4 @@ deities = { path = "../deities" } rand = "0.8" rand_pcg = "0.3" serde = { version = "1", features = ["derive"] } -strum = { version = "0.25", features = ["derive"] } +strum = { version = "0.27", features = ["derive"] } diff --git a/crates/personality/Cargo.toml b/crates/personality/Cargo.toml index b9f074c..d9a88c6 100644 --- a/crates/personality/Cargo.toml +++ b/crates/personality/Cargo.toml @@ -9,4 +9,4 @@ edition = "2021" [dependencies] alignment = { path = "../alignment" } serde = { version = "1", features = ["derive"] } -strum = { version = "0.25", features = ["derive"] } +strum = { version = "0.27", features = ["derive"] } diff --git a/crates/race/Cargo.toml b/crates/race/Cargo.toml index 3b66771..e897575 100644 --- a/crates/race/Cargo.toml +++ b/crates/race/Cargo.toml @@ -23,7 +23,7 @@ rand = "0.8" rand_pcg = "0.3" serde = { version = "1", features = ["derive"] } stats = { path = "../stats" } -strum = { version = "0.25", features = ["derive"] } +strum = { version = "0.27", features = ["derive"] } trinkets = { path = "../trinkets" } [dev-dependencies] diff --git a/crates/stats/Cargo.toml b/crates/stats/Cargo.toml index 0d9c94e..280e2e2 100644 --- a/crates/stats/Cargo.toml +++ b/crates/stats/Cargo.toml @@ -14,7 +14,7 @@ itertools = "0.11" rand = "0.8" rand_pcg = "0.3" serde = { version = "1", features = ["derive"] } -strum = { version = "0.25", features = ["derive"] } +strum = { version = "0.27", features = ["derive"] } trinkets = { path = "../trinkets" } [dev-dependencies]