diff options
| author | DanConwayDev <DanConwayDev@protonmail.com> | 2025-07-16 09:32:23 +0100 |
|---|---|---|
| committer | DanConwayDev <DanConwayDev@protonmail.com> | 2025-07-16 09:32:23 +0100 |
| commit | b01908c12af958726347018bcdc952751f8c8e17 (patch) | |
| tree | 87a912d145e77ccc948b919465cc1eef72a8df21 | |
| parent | 190fdeef6b18f5f57af5909becde10c5665ba88e (diff) | |
chore: cargo upgrade
command available after `cargo install cargo-edit` and it bumps
packages with no-breaking changes in Cargo.toml
| -rw-r--r-- | Cargo.toml | 32 | ||||
| -rw-r--r-- | test_utils/Cargo.toml | 14 |
2 files changed, 23 insertions, 23 deletions
| @@ -12,37 +12,37 @@ keywords = ["nostr", "git"] | |||
| 12 | categories = ["command-line-utilities","development-tools"] | 12 | categories = ["command-line-utilities","development-tools"] |
| 13 | 13 | ||
| 14 | [dependencies] | 14 | [dependencies] |
| 15 | anyhow = "1.0.75" | 15 | anyhow = "1.0.98" |
| 16 | async-trait = "0.1.73" | 16 | async-trait = "0.1.88" |
| 17 | auth-git2 = "0.5.4" | 17 | auth-git2 = "0.5.8" |
| 18 | chacha20poly1305 = "0.10.1" | 18 | chacha20poly1305 = "0.10.1" |
| 19 | clap = { version = "4.3.19", features = ["derive"] } | 19 | clap = { version = "4.5.41", features = ["derive"] } |
| 20 | console = "0.15.7" | 20 | console = "0.15.11" |
| 21 | dialoguer = "0.11.0" | 21 | dialoguer = "0.11.0" |
| 22 | directories = "6.0.0" | 22 | directories = "6.0.0" |
| 23 | futures = "0.3.28" | 23 | futures = "0.3.31" |
| 24 | git2 = "0.20.2" | 24 | git2 = "0.20.2" |
| 25 | indicatif = "0.17.7" | 25 | indicatif = "0.17.11" |
| 26 | nostr = { version = "0.41.0", features = ["nip05", "nip49"] } | 26 | nostr = { version = "0.41.0", features = ["nip05", "nip49"] } |
| 27 | nostr-connect = "0.41.0" | 27 | nostr-connect = "0.41.0" |
| 28 | nostr-database = "0.41.0" | 28 | nostr-database = "0.41.0" |
| 29 | nostr-lmdb = "0.41.0" | 29 | nostr-lmdb = "0.41.0" |
| 30 | nostr-relay-pool = "0.41.0" | 30 | nostr-relay-pool = "0.41.0" |
| 31 | nostr-sdk = "0.41.0" | 31 | nostr-sdk = "0.41.0" |
| 32 | passwords = "3.1.13" | 32 | passwords = "3.1.16" |
| 33 | qrcode = { version = "0.14.1", default-features = false } | 33 | qrcode = { version = "0.14.1", default-features = false } |
| 34 | scrypt = "0.11.0" | 34 | scrypt = "0.11.0" |
| 35 | serde = { version = "1.0.181", features = ["derive"] } | 35 | serde = { version = "1.0.219", features = ["derive"] } |
| 36 | serde_json = "1.0.105" | 36 | serde_json = "1.0.140" |
| 37 | serde_yaml = "0.9.27" | 37 | serde_yaml = "0.9.34" |
| 38 | tokio = { version = "1.40.0", features = ["full"] } | 38 | tokio = { version = "1.46.1", features = ["full"] } |
| 39 | urlencoding = "2.1.3" | 39 | urlencoding = "2.1.3" |
| 40 | zeroize = "1.6.0" | 40 | zeroize = "1.8.1" |
| 41 | 41 | ||
| 42 | [dev-dependencies] | 42 | [dev-dependencies] |
| 43 | assert_cmd = "2.0.12" | 43 | assert_cmd = "2.0.17" |
| 44 | mockall = "0.13.1" | 44 | mockall = "0.13.1" |
| 45 | once_cell = "1.18.0" | 45 | once_cell = "1.21.3" |
| 46 | serial_test = "3.2.0" | 46 | serial_test = "3.2.0" |
| 47 | test_utils = { path = "test_utils" } | 47 | test_utils = { path = "test_utils" } |
| 48 | 48 | ||
| @@ -69,4 +69,4 @@ path = "src/bin/git_remote_nostr/main.rs" | |||
| 69 | 69 | ||
| 70 | [profile.release] | 70 | [profile.release] |
| 71 | lto = true | 71 | lto = true |
| 72 | strip = "symbols" \ No newline at end of file | 72 | strip = "symbols" |
diff --git a/test_utils/Cargo.toml b/test_utils/Cargo.toml index 2001733..8cdb9d5 100644 --- a/test_utils/Cargo.toml +++ b/test_utils/Cargo.toml | |||
| @@ -4,21 +4,21 @@ version = "0.1.0" | |||
| 4 | edition = "2021" | 4 | edition = "2021" |
| 5 | 5 | ||
| 6 | [dependencies] | 6 | [dependencies] |
| 7 | anyhow = "1.0.75" | 7 | anyhow = "1.0.98" |
| 8 | assert_cmd = "2.0.12" | 8 | assert_cmd = "2.0.17" |
| 9 | dialoguer = "0.11.0" | 9 | dialoguer = "0.11.0" |
| 10 | directories = "6.0.0" | 10 | directories = "6.0.0" |
| 11 | futures = "0.3.28" | 11 | futures = "0.3.31" |
| 12 | git2 = "0.20.2" | 12 | git2 = "0.20.2" |
| 13 | nostr = "0.41.0" | 13 | nostr = "0.41.0" |
| 14 | nostr-database = "0.41.0" | 14 | nostr-database = "0.41.0" |
| 15 | nostr-lmdb = "0.41.0" | 15 | nostr-lmdb = "0.41.0" |
| 16 | nostr-sdk = "0.41.0" | 16 | nostr-sdk = "0.41.0" |
| 17 | once_cell = "1.18.0" | 17 | once_cell = "1.21.3" |
| 18 | rand = "0.8" | 18 | rand = "0.8" |
| 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.0" | 21 | strip-ansi-escapes = "0.2.1" |
| 22 | tokio = { version = "1.40.0", features = ["full"] } | 22 | tokio = { version = "1.46.1", features = ["full"] } |
| 23 | tungstenite = "0.20.1" | 23 | tungstenite = "0.20.1" |
| 24 | sha2 = "0.10" \ No newline at end of file | 24 | sha2 = "0.10" |