This commit is contained in:
dependabot[bot] 2026-08-24 15:54:19 +00:00 committed by GitHub
commit 5ed5b12de6
No known key found for this signature in database
GPG key ID: B5690EEEBB952194
2 changed files with 10 additions and 4 deletions

12
hermes-pair/Cargo.lock generated
View file

@ -180,6 +180,12 @@ version = "0.22.1"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "72b3254f16251a8381aa12e40e3c4d2f0199f8c6508fbecb9d91f575e0fbb8c6"
[[package]]
name = "base64"
version = "0.23.1"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "ac07cdecf99051d9a5238b80f35af32cdeba5b336e55d957b318b50137e18da5"
[[package]]
name = "bit-set"
version = "0.8.0"
@ -1102,7 +1108,7 @@ checksum = "2304e00983f87ffb38b55b444b5e3b60a884b5d30c0fca7d82fe33449bbe55ea"
name = "hermes-pair"
version = "0.1.0"
dependencies = [
"base64",
"base64 0.23.1",
"chrono",
"clap",
"dirs",
@ -1212,7 +1218,7 @@ version = "0.1.20"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "96547c2556ec9d12fb1578c4eaf448b04993e7fb79cbaad930a656880a6bdfa0"
dependencies = [
"base64",
"base64 0.22.1",
"bytes",
"futures-channel",
"futures-util",
@ -2439,7 +2445,7 @@ version = "0.12.28"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "eddd3ca559203180a307f12d114c268abf583f59b03cb906fd0b3ff8646c1147"
dependencies = [
"base64",
"base64 0.22.1",
"bytes",
"futures-core",
"http",

View file

@ -25,7 +25,7 @@ uuid = { version = "1.13", features = ["v4", "serde"] }
dirs = "6.0"
clap = { version = "4.5", features = ["derive"] }
eframe = { version = "0.31", default-features = false, features = ["default_fonts", "glow", "wayland", "x11"] }
base64 = "0.22"
base64 = "0.23"
if-addrs = "0.13"
chrono = { version = "0.4", features = ["serde"] }
url = { version = "2.5", features = ["serde"] }