diff --git a/Cargo.lock b/Cargo.lock index 58189ec..77154c0 100644 --- a/Cargo.lock +++ b/Cargo.lock @@ -810,9 +810,9 @@ dependencies = [ "rustls", "rustls-pemfile", "serde_json", - "sha2 0.10.9", + "sha2 0.11.0", "strum 0.27.2", - "strum_macros 0.27.2", + "strum_macros", "sysinfo", "tokio", "tokio-tungstenite", @@ -2233,9 +2233,9 @@ dependencies = [ "rustls", "rustls-pemfile", "serde_json", - "sha2 0.10.9", + "sha2 0.11.0", "strum 0.27.2", - "strum_macros 0.27.2", + "strum_macros", "sysinfo", "tokio", "tokio-tungstenite", @@ -2290,9 +2290,9 @@ dependencies = [ "serde", "serde_json", "serde_yaml", - "sha2 0.10.9", + "sha2 0.11.0", "strum 0.27.2", - "strum_macros 0.27.2", + "strum_macros", "sysinfo", "tempfile", "tokio", @@ -2466,7 +2466,7 @@ dependencies = [ "serde", "serde_json", "serde_yaml", - "sha2 0.10.9", + "sha2 0.11.0", "sysinfo", "thiserror 2.0.19", "tokio", @@ -2508,7 +2508,7 @@ dependencies = [ "semver", "serde", "serde_json", - "sha2 0.10.9", + "sha2 0.11.0", "sysinfo", "tempfile", "tokio", @@ -3271,7 +3271,7 @@ dependencies = [ "rand 0.8.7", "rand_core 0.6.4", "reqwest", - "sha2 0.10.9", + "sha2 0.11.0", "tokio", "tokio-util", "uuid", @@ -3395,9 +3395,9 @@ dependencies = [ "rustls", "rustls-pemfile", "serde_json", - "sha2 0.10.9", + "sha2 0.11.0", "strum 0.27.2", - "strum_macros 0.27.2", + "strum_macros", "sysinfo", "tokio", "tokio-tungstenite", @@ -4707,19 +4707,7 @@ version = "0.28.0" source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "9628de9b8791db39ceda2b119bbe13134770b56c138ec1d3af810d045c04f9bd" dependencies = [ - "strum_macros 0.28.0", -] - -[[package]] -name = "strum_macros" -version = "0.27.2" -source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "7695ce3845ea4b33927c055a39dc438a45b059f7c1b3d91d38d10355fb8cbca7" -dependencies = [ - "heck", - "proc-macro2", - "quote", - "syn 2.0.119", + "strum_macros", ] [[package]] @@ -5526,9 +5514,9 @@ dependencies = [ "rustls", "rustls-pemfile", "serde_json", - "sha2 0.10.9", + "sha2 0.11.0", "strum 0.27.2", - "strum_macros 0.27.2", + "strum_macros", "sysinfo", "tokio", "tokio-tungstenite", diff --git a/client/Cargo.toml b/client/Cargo.toml index 43e27d3..b810b65 100644 --- a/client/Cargo.toml +++ b/client/Cargo.toml @@ -40,16 +40,16 @@ once_cell = "1.21.3" open = "5.3.3" pnet = "0.35.0" rand = "0.8" -rand_core = { version = "0.6", features = ["getrandom", "std"] } +rand_core = { version = "0.10", features = ["getrandom", "std"] } ratatui = "0.30.0" reqwest = "0.13.2" rusqlite = "0.40.0" rustls = { version = "0.23.37", features = ["aws-lc-rs"] } rustls-pemfile = "2.2.0" serde_json = "1.0.149" -sha2 = "0.10.9" +sha2 = "0.11.0" strum = "0.27.2" -strum_macros = "0.27.2" +strum_macros = "0.28.0" sysinfo = "0.38.3" tokio = { version = "1.50.0", features = ["full"] } tokio-tungstenite = { version = "*", features = ["native-tls"] } diff --git a/communities/Cargo.toml b/communities/Cargo.toml index 0e867f2..0276496 100644 --- a/communities/Cargo.toml +++ b/communities/Cargo.toml @@ -39,16 +39,16 @@ once_cell = "1.21.3" open = "5.3.3" pnet = "0.35.0" rand = "0.8" -rand_core = { version = "0.6", features = ["getrandom", "std"] } +rand_core = { version = "0.10", features = ["getrandom", "std"] } ratatui = "0.30.0" reqwest = "0.13.2" rusqlite = "0.40.0" rustls = { version = "0.23.37", features = ["aws-lc-rs"] } rustls-pemfile = "2.2.0" serde_json = "1.0.149" -sha2 = "0.10.9" +sha2 = "0.11.0" strum = "0.27.2" -strum_macros = "0.27.2" +strum_macros = "0.28.0" sysinfo = "0.38.3" tokio = { version = "1.50.0", features = ["full"] } tokio-tungstenite = { version = "*", features = ["native-tls"] } diff --git a/iota-auth/Cargo.toml b/iota-auth/Cargo.toml index dbc740c..4d55bac 100644 --- a/iota-auth/Cargo.toml +++ b/iota-auth/Cargo.toml @@ -36,16 +36,16 @@ once_cell = "1.21.3" open = "5.3.3" pnet = "0.35.0" rand = "0.8" -rand_core = { version = "0.6", features = ["getrandom", "std"] } +rand_core = { version = "0.10", features = ["getrandom", "std"] } ratatui = "0.30.0" reqwest = "0.13.2" rusqlite = "0.40.0" rustls = { version = "0.23.37", features = ["aws-lc-rs"] } rustls-pemfile = "2.2.0" serde_json = "1.0.149" -sha2 = "0.10.9" +sha2 = "0.11.0" strum = "0.27.2" -strum_macros = "0.27.2" +strum_macros = "0.28.0" sysinfo = "0.38.3" tokio = { version = "1.50.0", features = ["full"] } tokio-tungstenite = { version = "*", features = ["native-tls"] } diff --git a/iota-cli/Cargo.toml b/iota-cli/Cargo.toml index f7fe9a4..9b0cd33 100644 --- a/iota-cli/Cargo.toml +++ b/iota-cli/Cargo.toml @@ -54,7 +54,7 @@ once_cell = "1.21.3" open = "5.3.3" pnet = "0.35.0" rand = "0.8" -rand_core = { version = "0.6", features = ["getrandom", "std"] } +rand_core = { version = "0.10", features = ["getrandom", "std"] } ratatui = "0.30.0" reqwest = "0.13.2" rusqlite = "0.40.0" @@ -63,9 +63,9 @@ rustls-pemfile = "2.2.0" serde_json = "1.0.149" serde = { version = "1", features = ["derive"] } serde_yaml = "0.9" -sha2 = "0.10.9" +sha2 = "0.11.0" strum = "0.27.2" -strum_macros = "0.27.2" +strum_macros = "0.28.0" sysinfo = "0.38.3" tokio = { version = "1.50.0", features = ["full"] } tokio-util = { version = "0.7", features = ["rt"] } diff --git a/iota-storage/Cargo.toml b/iota-storage/Cargo.toml index 0080576..b4b81fb 100644 --- a/iota-storage/Cargo.toml +++ b/iota-storage/Cargo.toml @@ -24,11 +24,11 @@ serde_json = "1" serde_yaml = "0.9" thiserror = "2" rand = "0.8" -rand_core = { version = "0.6", features = ["getrandom", "std"] } +rand_core = { version = "0.10", features = ["getrandom", "std"] } ratatui = "0.30.0" reqwest = "0.13.2" rusqlite = "0.40.0" -sha2 = "0.10.9" +sha2 = "0.11.0" sysinfo = "0.38.3" tokio = { version = "1.50.0", features = ["full"] } uuid = { version = "*", features = ["v4"] } diff --git a/iota-updater/Cargo.toml b/iota-updater/Cargo.toml index d089180..ac02b50 100644 --- a/iota-updater/Cargo.toml +++ b/iota-updater/Cargo.toml @@ -20,8 +20,8 @@ walkdir = "2.5.0" zip = "6.0.0" aes-gcm = "0.10.3" base64 = "0.22.1" -rand_core = { version = "0.6", features = ["getrandom", "std"] } -sha2 = "0.10.9" +rand_core = { version = "0.10", features = ["getrandom", "std"] } +sha2 = "0.11.0" x448 = { version = "*" } hkdf = "0.12.4" once_cell = "1.21.3" diff --git a/omikron-connector/Cargo.toml b/omikron-connector/Cargo.toml index c869941..68a333a 100644 --- a/omikron-connector/Cargo.toml +++ b/omikron-connector/Cargo.toml @@ -25,6 +25,6 @@ uuid = { version = "*", features = ["v4"] } base64 = "0.22.1" hex = "*" rand = "0.8" -rand_core = { version = "0.6", features = ["getrandom", "std"] } -sha2 = "0.10.9" +rand_core = { version = "0.10", features = ["getrandom", "std"] } +sha2 = "0.11.0" x448 = { version = "*" } diff --git a/other-iota/Cargo.toml b/other-iota/Cargo.toml index b4fd14e..2d38403 100644 --- a/other-iota/Cargo.toml +++ b/other-iota/Cargo.toml @@ -39,16 +39,16 @@ once_cell = "1.21.3" open = "5.3.3" pnet = "0.35.0" rand = "0.8" -rand_core = { version = "0.6", features = ["getrandom", "std"] } +rand_core = { version = "0.10", features = ["getrandom", "std"] } ratatui = "0.30.0" reqwest = "0.13.2" rusqlite = "0.40.0" rustls = { version = "0.23.37", features = ["aws-lc-rs"] } rustls-pemfile = "2.2.0" serde_json = "1.0.149" -sha2 = "0.10.9" +sha2 = "0.11.0" strum = "0.27.2" -strum_macros = "0.27.2" +strum_macros = "0.28.0" sysinfo = "0.38.3" tokio = { version = "1.50.0", features = ["full"] } tokio-tungstenite = { version = "*", features = ["native-tls"] } diff --git a/web-ui/Cargo.toml b/web-ui/Cargo.toml index 5034f88..8c3c2c7 100644 --- a/web-ui/Cargo.toml +++ b/web-ui/Cargo.toml @@ -39,16 +39,16 @@ once_cell = "1.21.3" open = "5.3.3" pnet = "0.35.0" rand = "0.8" -rand_core = { version = "0.6", features = ["getrandom", "std"] } +rand_core = { version = "0.10", features = ["getrandom", "std"] } ratatui = "0.30.0" reqwest = "0.13.2" rusqlite = "0.40.0" rustls = { version = "0.23.37", features = ["aws-lc-rs"] } rustls-pemfile = "2.2.0" serde_json = "1.0.149" -sha2 = "0.10.9" +sha2 = "0.11.0" strum = "0.27.2" -strum_macros = "0.27.2" +strum_macros = "0.28.0" sysinfo = "0.38.3" tokio = { version = "1.50.0", features = ["full"] } tokio-tungstenite = { version = "*", features = ["native-tls"] }