diff options
| author | DanConwayDev <DanConwayDev@protonmail.com> | 2025-07-16 09:49:47 +0100 |
|---|---|---|
| committer | DanConwayDev <DanConwayDev@protonmail.com> | 2025-07-16 09:49:47 +0100 |
| commit | 6e041a3626f04e591d5c22f71d3e4ab2b03bd7bb (patch) | |
| tree | 962c135062fe7c6984605bfc7c2f14b7816d2a6e | |
| parent | 9340ff9678424e95fd5fa2643128eb31e2386108 (diff) | |
bump: cargo upgrade --incompatible
upgrade packages with potentially incomaptible updates
breaking changes don't impact ngit
| -rw-r--r-- | Cargo.lock | 21 | ||||
| -rw-r--r-- | test_utils/Cargo.toml | 4 |
2 files changed, 21 insertions, 4 deletions
| @@ -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]] |
| 2832 | name = "tungstenite" | ||
| 2833 | version = "0.27.0" | ||
| 2834 | source = "registry+https://github.com/rust-lang/crates.io-index" | ||
| 2835 | checksum = "eadc29d668c91fcc564941132e17b28a7ceb2f3ebf0b9dae3e03fd7a6748eb0d" | ||
| 2836 | dependencies = [ | ||
| 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]] | ||
| 2832 | name = "typenum" | 2849 | name = "typenum" |
| 2833 | version = "1.18.0" | 2850 | version = "1.18.0" |
| 2834 | source = "registry+https://github.com/rust-lang/crates.io-index" | 2851 | source = "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" | |||
| 15 | nostr-lmdb = "0.42.0" | 15 | nostr-lmdb = "0.42.0" |
| 16 | nostr-sdk = "0.42.0" | 16 | nostr-sdk = "0.42.0" |
| 17 | once_cell = "1.21.3" | 17 | once_cell = "1.21.3" |
| 18 | rand = "0.8" | 18 | rand = "0.9" |
| 19 | rexpect = { git = "https://github.com/rust-cli/rexpect.git", rev = "9eb61dd" } | 19 | rexpect = { git = "https://github.com/rust-cli/rexpect.git", rev = "9eb61dd" } |
| 20 | simple-websockets = { git = "https://github.com/DanConwayDev/simple-websockets", branch= "auto-release-port" } | 20 | simple-websockets = { git = "https://github.com/DanConwayDev/simple-websockets", branch= "auto-release-port" } |
| 21 | strip-ansi-escapes = "0.2.1" | 21 | strip-ansi-escapes = "0.2.1" |
| 22 | tokio = { version = "1.46.1", features = ["full"] } | 22 | tokio = { version = "1.46.1", features = ["full"] } |
| 23 | tungstenite = "0.20.1" | 23 | tungstenite = "0.27.0" |
| 24 | sha2 = "0.10" | 24 | sha2 = "0.10" |