diff --git a/Cargo.lock b/Cargo.lock index c4f908f..ba80bb7 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" @@ -2215,6 +2215,12 @@ dependencies = [ "getrandom 0.2.4", ] +[[package]] +name = "rand_core" +version = "0.10.0" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "0c8d0fd677905edcbeedbf2edb6494d676f0e98d54d5cf9bda0b061cb8fb8aba" + [[package]] name = "rand_hc" version = "0.2.0" @@ -2226,11 +2232,11 @@ dependencies = [ [[package]] name = "rand_pcg" -version = "0.3.1" +version = "0.10.1" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "59cad018caf63deb318e5a4586d99a24424a364f40f1e5778c29aca23f4fc73e" +checksum = "2a36dd10a879f5c16e363eed24471b321b114ce3112c2d5d8df06545fcf48152" dependencies = [ - "rand_core 0.6.2", + "rand_core 0.10.0", ] [[package]] diff --git a/Cargo.toml b/Cargo.toml index da490d6..cc46e66 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -10,7 +10,7 @@ edition = "2021" async-std = { version = "1", features = ["attributes"] } character = { path = "./crates/character" } rand = "0.8" -rand_pcg = "0.3" +rand_pcg = "0.10" sentry = "0.31" tera = "1" tide = "0.16" diff --git a/crates/alignment/Cargo.toml b/crates/alignment/Cargo.toml index 71bcec2..9c03cf3 100644 --- a/crates/alignment/Cargo.toml +++ b/crates/alignment/Cargo.toml @@ -8,6 +8,6 @@ edition = "2021" [dependencies] rand = "0.8" -rand_pcg = "0.3" +rand_pcg = "0.10" serde = { version = "1", features = ["derive"] } strum = { version = "0.25", features = ["derive"] } diff --git a/crates/background/Cargo.toml b/crates/background/Cargo.toml index a29749b..7e9c8e2 100644 --- a/crates/background/Cargo.toml +++ b/crates/background/Cargo.toml @@ -17,7 +17,7 @@ itertools = "0.11" languages = { path = "../languages" } personality = { path = "../personality" } rand = "0.8" -rand_pcg = "0.3" +rand_pcg = "0.10" serde = { version = "1", features = ["derive"] } stats = { path = "../stats" } strum = { version = "0.25", features = ["derive"] } diff --git a/crates/character/Cargo.toml b/crates/character/Cargo.toml index 300f66a..f9eb65d 100644 --- a/crates/character/Cargo.toml +++ b/crates/character/Cargo.toml @@ -20,7 +20,7 @@ languages = { path = "../languages" } personality = { path = "../personality" } race = { path = "../race" } rand = "0.8" -rand_pcg = "0.3" +rand_pcg = "0.10" serde = { version = "1", features = ["derive"] } stats = { path = "../stats" } strum = { version = "0.25", features = ["derive"] } diff --git a/crates/characteristics/Cargo.toml b/crates/characteristics/Cargo.toml index 640f826..c09df07 100644 --- a/crates/characteristics/Cargo.toml +++ b/crates/characteristics/Cargo.toml @@ -9,7 +9,7 @@ edition = "2021" [dependencies] dice_roller = { path = "../dice_roller" } rand = "0.8" -rand_pcg = "0.3" +rand_pcg = "0.10" serde = { version = "1", features = ["derive"] } strum = { version = "0.25", features = ["derive"] } diff --git a/crates/class/Cargo.toml b/crates/class/Cargo.toml index a130508..f235f91 100644 --- a/crates/class/Cargo.toml +++ b/crates/class/Cargo.toml @@ -16,7 +16,7 @@ impl-enum = "0.2" itertools = "0.11" languages = { path = "../languages" } rand = "0.8" -rand_pcg = "0.3" +rand_pcg = "0.10" serde = { version = "1", features = ["derive"] } stats = { path = "../stats" } strum = { version = "0.25", features = ["derive"] } diff --git a/crates/deities/Cargo.toml b/crates/deities/Cargo.toml index 78e737c..172fbcb 100644 --- a/crates/deities/Cargo.toml +++ b/crates/deities/Cargo.toml @@ -9,7 +9,7 @@ edition = "2021" [dependencies] alignment = { path = "../alignment" } rand = "0.8" -rand_pcg = "0.3" +rand_pcg = "0.10" serde = { version = "1", features = ["derive"] } strum = { version = "0.25", features = ["derive"] } diff --git a/crates/dice_roller/Cargo.toml b/crates/dice_roller/Cargo.toml index 491343b..8442db6 100644 --- a/crates/dice_roller/Cargo.toml +++ b/crates/dice_roller/Cargo.toml @@ -8,6 +8,6 @@ edition = "2021" [dependencies] rand = "0.8" -rand_pcg = "0.3" +rand_pcg = "0.10" serde = { version = "1", features = ["derive"] } strum = { version = "0.25", features = ["derive"] } diff --git a/crates/languages/Cargo.toml b/crates/languages/Cargo.toml index 13cdb90..6950b52 100644 --- a/crates/languages/Cargo.toml +++ b/crates/languages/Cargo.toml @@ -9,6 +9,6 @@ edition = "2021" [dependencies] deities = { path = "../deities" } rand = "0.8" -rand_pcg = "0.3" +rand_pcg = "0.10" serde = { version = "1", features = ["derive"] } strum = { version = "0.25", features = ["derive"] } diff --git a/crates/race/Cargo.toml b/crates/race/Cargo.toml index 3b66771..4f3ab69 100644 --- a/crates/race/Cargo.toml +++ b/crates/race/Cargo.toml @@ -20,7 +20,7 @@ impl-enum = "0.2" languages = { path = "../languages" } personality = { path = "../personality" } rand = "0.8" -rand_pcg = "0.3" +rand_pcg = "0.10" serde = { version = "1", features = ["derive"] } stats = { path = "../stats" } strum = { version = "0.25", features = ["derive"] } diff --git a/crates/stats/Cargo.toml b/crates/stats/Cargo.toml index 0d9c94e..49fed79 100644 --- a/crates/stats/Cargo.toml +++ b/crates/stats/Cargo.toml @@ -12,7 +12,7 @@ dice_roller = { path = "../dice_roller" } gear = { path = "../gear" } itertools = "0.11" rand = "0.8" -rand_pcg = "0.3" +rand_pcg = "0.10" serde = { version = "1", features = ["derive"] } strum = { version = "0.25", features = ["derive"] } trinkets = { path = "../trinkets" }