Compare commits

...
Author SHA1 Message Date
5f77efa10f Update Rust crate rand_core to 0.10
Some checks failed
renovate/artifacts Artifact file update failure
renovate/stability-days Updates have met minimum release age requirement
2026-08-06 21:02:38 +02:00
a8ea3fc9e5 Merge pull request 'Update Rust crate strum_macros to 0.28.0' (#18) from renovate/strum_macros-0.x into main 2026-08-06 20:02:43 +02:00
27ef801226 Merge pull request 'Update Rust crate sha2 to 0.11.0' (#16) from renovate/sha2-0.x into main 2026-08-06 20:02:40 +02:00
a3815b30c9 Update Rust crate strum_macros to 0.28.0
Some checks failed
renovate/artifacts Artifact file update failure
renovate/stability-days Updates have met minimum release age requirement
2026-08-06 19:02:08 +02:00
e95974b082 Update Rust crate sha2 to 0.11.0
Some checks failed
renovate/artifacts Artifact file update failure
renovate/stability-days Updates have met minimum release age requirement
2026-08-06 18:03:06 +02:00
10 changed files with 38 additions and 50 deletions

40
Cargo.lock generated
View file

@ -810,9 +810,9 @@ dependencies = [
"rustls", "rustls",
"rustls-pemfile", "rustls-pemfile",
"serde_json", "serde_json",
"sha2 0.10.9", "sha2 0.11.0",
"strum 0.27.2", "strum 0.27.2",
"strum_macros 0.27.2", "strum_macros",
"sysinfo", "sysinfo",
"tokio", "tokio",
"tokio-tungstenite", "tokio-tungstenite",
@ -2233,9 +2233,9 @@ dependencies = [
"rustls", "rustls",
"rustls-pemfile", "rustls-pemfile",
"serde_json", "serde_json",
"sha2 0.10.9", "sha2 0.11.0",
"strum 0.27.2", "strum 0.27.2",
"strum_macros 0.27.2", "strum_macros",
"sysinfo", "sysinfo",
"tokio", "tokio",
"tokio-tungstenite", "tokio-tungstenite",
@ -2290,9 +2290,9 @@ dependencies = [
"serde", "serde",
"serde_json", "serde_json",
"serde_yaml", "serde_yaml",
"sha2 0.10.9", "sha2 0.11.0",
"strum 0.27.2", "strum 0.27.2",
"strum_macros 0.27.2", "strum_macros",
"sysinfo", "sysinfo",
"tempfile", "tempfile",
"tokio", "tokio",
@ -2466,7 +2466,7 @@ dependencies = [
"serde", "serde",
"serde_json", "serde_json",
"serde_yaml", "serde_yaml",
"sha2 0.10.9", "sha2 0.11.0",
"sysinfo", "sysinfo",
"thiserror 2.0.19", "thiserror 2.0.19",
"tokio", "tokio",
@ -2508,7 +2508,7 @@ dependencies = [
"semver", "semver",
"serde", "serde",
"serde_json", "serde_json",
"sha2 0.10.9", "sha2 0.11.0",
"sysinfo", "sysinfo",
"tempfile", "tempfile",
"tokio", "tokio",
@ -3271,7 +3271,7 @@ dependencies = [
"rand 0.8.7", "rand 0.8.7",
"rand_core 0.6.4", "rand_core 0.6.4",
"reqwest", "reqwest",
"sha2 0.10.9", "sha2 0.11.0",
"tokio", "tokio",
"tokio-util", "tokio-util",
"uuid", "uuid",
@ -3395,9 +3395,9 @@ dependencies = [
"rustls", "rustls",
"rustls-pemfile", "rustls-pemfile",
"serde_json", "serde_json",
"sha2 0.10.9", "sha2 0.11.0",
"strum 0.27.2", "strum 0.27.2",
"strum_macros 0.27.2", "strum_macros",
"sysinfo", "sysinfo",
"tokio", "tokio",
"tokio-tungstenite", "tokio-tungstenite",
@ -4707,19 +4707,7 @@ version = "0.28.0"
source = "registry+https://github.com/rust-lang/crates.io-index" source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "9628de9b8791db39ceda2b119bbe13134770b56c138ec1d3af810d045c04f9bd" checksum = "9628de9b8791db39ceda2b119bbe13134770b56c138ec1d3af810d045c04f9bd"
dependencies = [ dependencies = [
"strum_macros 0.28.0", "strum_macros",
]
[[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",
] ]
[[package]] [[package]]
@ -5526,9 +5514,9 @@ dependencies = [
"rustls", "rustls",
"rustls-pemfile", "rustls-pemfile",
"serde_json", "serde_json",
"sha2 0.10.9", "sha2 0.11.0",
"strum 0.27.2", "strum 0.27.2",
"strum_macros 0.27.2", "strum_macros",
"sysinfo", "sysinfo",
"tokio", "tokio",
"tokio-tungstenite", "tokio-tungstenite",

View file

@ -40,16 +40,16 @@ once_cell = "1.21.3"
open = "5.3.3" open = "5.3.3"
pnet = "0.35.0" pnet = "0.35.0"
rand = "0.8" rand = "0.8"
rand_core = { version = "0.6", features = ["getrandom", "std"] } rand_core = { version = "0.10", features = ["getrandom", "std"] }
ratatui = "0.30.0" ratatui = "0.30.0"
reqwest = "0.13.2" reqwest = "0.13.2"
rusqlite = "0.40.0" rusqlite = "0.40.0"
rustls = { version = "0.23.37", features = ["aws-lc-rs"] } rustls = { version = "0.23.37", features = ["aws-lc-rs"] }
rustls-pemfile = "2.2.0" rustls-pemfile = "2.2.0"
serde_json = "1.0.149" serde_json = "1.0.149"
sha2 = "0.10.9" sha2 = "0.11.0"
strum = "0.27.2" strum = "0.27.2"
strum_macros = "0.27.2" strum_macros = "0.28.0"
sysinfo = "0.38.3" sysinfo = "0.38.3"
tokio = { version = "1.50.0", features = ["full"] } tokio = { version = "1.50.0", features = ["full"] }
tokio-tungstenite = { version = "*", features = ["native-tls"] } tokio-tungstenite = { version = "*", features = ["native-tls"] }

View file

@ -39,16 +39,16 @@ once_cell = "1.21.3"
open = "5.3.3" open = "5.3.3"
pnet = "0.35.0" pnet = "0.35.0"
rand = "0.8" rand = "0.8"
rand_core = { version = "0.6", features = ["getrandom", "std"] } rand_core = { version = "0.10", features = ["getrandom", "std"] }
ratatui = "0.30.0" ratatui = "0.30.0"
reqwest = "0.13.2" reqwest = "0.13.2"
rusqlite = "0.40.0" rusqlite = "0.40.0"
rustls = { version = "0.23.37", features = ["aws-lc-rs"] } rustls = { version = "0.23.37", features = ["aws-lc-rs"] }
rustls-pemfile = "2.2.0" rustls-pemfile = "2.2.0"
serde_json = "1.0.149" serde_json = "1.0.149"
sha2 = "0.10.9" sha2 = "0.11.0"
strum = "0.27.2" strum = "0.27.2"
strum_macros = "0.27.2" strum_macros = "0.28.0"
sysinfo = "0.38.3" sysinfo = "0.38.3"
tokio = { version = "1.50.0", features = ["full"] } tokio = { version = "1.50.0", features = ["full"] }
tokio-tungstenite = { version = "*", features = ["native-tls"] } tokio-tungstenite = { version = "*", features = ["native-tls"] }

View file

@ -36,16 +36,16 @@ once_cell = "1.21.3"
open = "5.3.3" open = "5.3.3"
pnet = "0.35.0" pnet = "0.35.0"
rand = "0.8" rand = "0.8"
rand_core = { version = "0.6", features = ["getrandom", "std"] } rand_core = { version = "0.10", features = ["getrandom", "std"] }
ratatui = "0.30.0" ratatui = "0.30.0"
reqwest = "0.13.2" reqwest = "0.13.2"
rusqlite = "0.40.0" rusqlite = "0.40.0"
rustls = { version = "0.23.37", features = ["aws-lc-rs"] } rustls = { version = "0.23.37", features = ["aws-lc-rs"] }
rustls-pemfile = "2.2.0" rustls-pemfile = "2.2.0"
serde_json = "1.0.149" serde_json = "1.0.149"
sha2 = "0.10.9" sha2 = "0.11.0"
strum = "0.27.2" strum = "0.27.2"
strum_macros = "0.27.2" strum_macros = "0.28.0"
sysinfo = "0.38.3" sysinfo = "0.38.3"
tokio = { version = "1.50.0", features = ["full"] } tokio = { version = "1.50.0", features = ["full"] }
tokio-tungstenite = { version = "*", features = ["native-tls"] } tokio-tungstenite = { version = "*", features = ["native-tls"] }

View file

@ -54,7 +54,7 @@ once_cell = "1.21.3"
open = "5.3.3" open = "5.3.3"
pnet = "0.35.0" pnet = "0.35.0"
rand = "0.8" rand = "0.8"
rand_core = { version = "0.6", features = ["getrandom", "std"] } rand_core = { version = "0.10", features = ["getrandom", "std"] }
ratatui = "0.30.0" ratatui = "0.30.0"
reqwest = "0.13.2" reqwest = "0.13.2"
rusqlite = "0.40.0" rusqlite = "0.40.0"
@ -63,9 +63,9 @@ rustls-pemfile = "2.2.0"
serde_json = "1.0.149" serde_json = "1.0.149"
serde = { version = "1", features = ["derive"] } serde = { version = "1", features = ["derive"] }
serde_yaml = "0.9" serde_yaml = "0.9"
sha2 = "0.10.9" sha2 = "0.11.0"
strum = "0.27.2" strum = "0.27.2"
strum_macros = "0.27.2" strum_macros = "0.28.0"
sysinfo = "0.38.3" sysinfo = "0.38.3"
tokio = { version = "1.50.0", features = ["full"] } tokio = { version = "1.50.0", features = ["full"] }
tokio-util = { version = "0.7", features = ["rt"] } tokio-util = { version = "0.7", features = ["rt"] }

View file

@ -24,11 +24,11 @@ serde_json = "1"
serde_yaml = "0.9" serde_yaml = "0.9"
thiserror = "2" thiserror = "2"
rand = "0.8" rand = "0.8"
rand_core = { version = "0.6", features = ["getrandom", "std"] } rand_core = { version = "0.10", features = ["getrandom", "std"] }
ratatui = "0.30.0" ratatui = "0.30.0"
reqwest = "0.13.2" reqwest = "0.13.2"
rusqlite = "0.40.0" rusqlite = "0.40.0"
sha2 = "0.10.9" sha2 = "0.11.0"
sysinfo = "0.38.3" sysinfo = "0.38.3"
tokio = { version = "1.50.0", features = ["full"] } tokio = { version = "1.50.0", features = ["full"] }
uuid = { version = "*", features = ["v4"] } uuid = { version = "*", features = ["v4"] }

View file

@ -20,8 +20,8 @@ walkdir = "2.5.0"
zip = "6.0.0" zip = "6.0.0"
aes-gcm = "0.10.3" aes-gcm = "0.10.3"
base64 = "0.22.1" base64 = "0.22.1"
rand_core = { version = "0.6", features = ["getrandom", "std"] } rand_core = { version = "0.10", features = ["getrandom", "std"] }
sha2 = "0.10.9" sha2 = "0.11.0"
x448 = { version = "*" } x448 = { version = "*" }
hkdf = "0.12.4" hkdf = "0.12.4"
once_cell = "1.21.3" once_cell = "1.21.3"

View file

@ -25,6 +25,6 @@ uuid = { version = "*", features = ["v4"] }
base64 = "0.22.1" base64 = "0.22.1"
hex = "*" hex = "*"
rand = "0.8" rand = "0.8"
rand_core = { version = "0.6", features = ["getrandom", "std"] } rand_core = { version = "0.10", features = ["getrandom", "std"] }
sha2 = "0.10.9" sha2 = "0.11.0"
x448 = { version = "*" } x448 = { version = "*" }

View file

@ -39,16 +39,16 @@ once_cell = "1.21.3"
open = "5.3.3" open = "5.3.3"
pnet = "0.35.0" pnet = "0.35.0"
rand = "0.8" rand = "0.8"
rand_core = { version = "0.6", features = ["getrandom", "std"] } rand_core = { version = "0.10", features = ["getrandom", "std"] }
ratatui = "0.30.0" ratatui = "0.30.0"
reqwest = "0.13.2" reqwest = "0.13.2"
rusqlite = "0.40.0" rusqlite = "0.40.0"
rustls = { version = "0.23.37", features = ["aws-lc-rs"] } rustls = { version = "0.23.37", features = ["aws-lc-rs"] }
rustls-pemfile = "2.2.0" rustls-pemfile = "2.2.0"
serde_json = "1.0.149" serde_json = "1.0.149"
sha2 = "0.10.9" sha2 = "0.11.0"
strum = "0.27.2" strum = "0.27.2"
strum_macros = "0.27.2" strum_macros = "0.28.0"
sysinfo = "0.38.3" sysinfo = "0.38.3"
tokio = { version = "1.50.0", features = ["full"] } tokio = { version = "1.50.0", features = ["full"] }
tokio-tungstenite = { version = "*", features = ["native-tls"] } tokio-tungstenite = { version = "*", features = ["native-tls"] }

View file

@ -39,16 +39,16 @@ once_cell = "1.21.3"
open = "5.3.3" open = "5.3.3"
pnet = "0.35.0" pnet = "0.35.0"
rand = "0.8" rand = "0.8"
rand_core = { version = "0.6", features = ["getrandom", "std"] } rand_core = { version = "0.10", features = ["getrandom", "std"] }
ratatui = "0.30.0" ratatui = "0.30.0"
reqwest = "0.13.2" reqwest = "0.13.2"
rusqlite = "0.40.0" rusqlite = "0.40.0"
rustls = { version = "0.23.37", features = ["aws-lc-rs"] } rustls = { version = "0.23.37", features = ["aws-lc-rs"] }
rustls-pemfile = "2.2.0" rustls-pemfile = "2.2.0"
serde_json = "1.0.149" serde_json = "1.0.149"
sha2 = "0.10.9" sha2 = "0.11.0"
strum = "0.27.2" strum = "0.27.2"
strum_macros = "0.27.2" strum_macros = "0.28.0"
sysinfo = "0.38.3" sysinfo = "0.38.3"
tokio = { version = "1.50.0", features = ["full"] } tokio = { version = "1.50.0", features = ["full"] }
tokio-tungstenite = { version = "*", features = ["native-tls"] } tokio-tungstenite = { version = "*", features = ["native-tls"] }