upleb.uk

Public git repos — served from a NIP-34 GRASP relay at git.upleb.uk

summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--Cargo.lock21
-rw-r--r--test_utils/Cargo.toml4
2 files changed, 21 insertions, 4 deletions
diff --git a/Cargo.lock b/Cargo.lock
index b45930a..04e14a5 100644
--- a/Cargo.lock
+++ b/Cargo.lock
@@ -2553,13 +2553,13 @@ dependencies = [
2553 "nostr-lmdb", 2553 "nostr-lmdb",
2554 "nostr-sdk", 2554 "nostr-sdk",
2555 "once_cell", 2555 "once_cell",
2556 "rand 0.8.5", 2556 "rand 0.9.1",
2557 "rexpect", 2557 "rexpect",
2558 "sha2", 2558 "sha2",
2559 "simple-websockets", 2559 "simple-websockets",
2560 "strip-ansi-escapes", 2560 "strip-ansi-escapes",
2561 "tokio", 2561 "tokio",
2562 "tungstenite 0.20.1", 2562 "tungstenite 0.27.0",
2563] 2563]
2564 2564
2565[[package]] 2565[[package]]
@@ -2829,6 +2829,23 @@ dependencies = [
2829] 2829]
2830 2830
2831[[package]] 2831[[package]]
2832name = "tungstenite"
2833version = "0.27.0"
2834source = "registry+https://github.com/rust-lang/crates.io-index"
2835checksum = "eadc29d668c91fcc564941132e17b28a7ceb2f3ebf0b9dae3e03fd7a6748eb0d"
2836dependencies = [
2837 "bytes",
2838 "data-encoding",
2839 "http 1.3.1",
2840 "httparse",
2841 "log",
2842 "rand 0.9.1",
2843 "sha1",
2844 "thiserror 2.0.12",
2845 "utf-8",
2846]
2847
2848[[package]]
2832name = "typenum" 2849name = "typenum"
2833version = "1.18.0" 2850version = "1.18.0"
2834source = "registry+https://github.com/rust-lang/crates.io-index" 2851source = "registry+https://github.com/rust-lang/crates.io-index"
diff --git a/test_utils/Cargo.toml b/test_utils/Cargo.toml
index 5d631b8..8602416 100644
--- a/test_utils/Cargo.toml
+++ b/test_utils/Cargo.toml
@@ -15,10 +15,10 @@ nostr-database = "0.42.0"
15nostr-lmdb = "0.42.0" 15nostr-lmdb = "0.42.0"
16nostr-sdk = "0.42.0" 16nostr-sdk = "0.42.0"
17once_cell = "1.21.3" 17once_cell = "1.21.3"
18rand = "0.8" 18rand = "0.9"
19rexpect = { git = "https://github.com/rust-cli/rexpect.git", rev = "9eb61dd" } 19rexpect = { git = "https://github.com/rust-cli/rexpect.git", rev = "9eb61dd" }
20simple-websockets = { git = "https://github.com/DanConwayDev/simple-websockets", branch= "auto-release-port" } 20simple-websockets = { git = "https://github.com/DanConwayDev/simple-websockets", branch= "auto-release-port" }
21strip-ansi-escapes = "0.2.1" 21strip-ansi-escapes = "0.2.1"
22tokio = { version = "1.46.1", features = ["full"] } 22tokio = { version = "1.46.1", features = ["full"] }
23tungstenite = "0.20.1" 23tungstenite = "0.27.0"
24sha2 = "0.10" 24sha2 = "0.10"