From b01908c12af958726347018bcdc952751f8c8e17 Mon Sep 17 00:00:00 2001 From: DanConwayDev Date: Wed, 16 Jul 2025 09:32:23 +0100 Subject: chore: cargo upgrade command available after `cargo install cargo-edit` and it bumps packages with no-breaking changes in Cargo.toml --- Cargo.toml | 32 ++++++++++++++++---------------- 1 file changed, 16 insertions(+), 16 deletions(-) (limited to 'Cargo.toml') diff --git a/Cargo.toml b/Cargo.toml index 41353c6..4311dd7 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -12,37 +12,37 @@ keywords = ["nostr", "git"] categories = ["command-line-utilities","development-tools"] [dependencies] -anyhow = "1.0.75" -async-trait = "0.1.73" -auth-git2 = "0.5.4" +anyhow = "1.0.98" +async-trait = "0.1.88" +auth-git2 = "0.5.8" chacha20poly1305 = "0.10.1" -clap = { version = "4.3.19", features = ["derive"] } -console = "0.15.7" +clap = { version = "4.5.41", features = ["derive"] } +console = "0.15.11" dialoguer = "0.11.0" directories = "6.0.0" -futures = "0.3.28" +futures = "0.3.31" git2 = "0.20.2" -indicatif = "0.17.7" +indicatif = "0.17.11" nostr = { version = "0.41.0", features = ["nip05", "nip49"] } nostr-connect = "0.41.0" nostr-database = "0.41.0" nostr-lmdb = "0.41.0" nostr-relay-pool = "0.41.0" nostr-sdk = "0.41.0" -passwords = "3.1.13" +passwords = "3.1.16" qrcode = { version = "0.14.1", default-features = false } scrypt = "0.11.0" -serde = { version = "1.0.181", features = ["derive"] } -serde_json = "1.0.105" -serde_yaml = "0.9.27" -tokio = { version = "1.40.0", features = ["full"] } +serde = { version = "1.0.219", features = ["derive"] } +serde_json = "1.0.140" +serde_yaml = "0.9.34" +tokio = { version = "1.46.1", features = ["full"] } urlencoding = "2.1.3" -zeroize = "1.6.0" +zeroize = "1.8.1" [dev-dependencies] -assert_cmd = "2.0.12" +assert_cmd = "2.0.17" mockall = "0.13.1" -once_cell = "1.18.0" +once_cell = "1.21.3" serial_test = "3.2.0" test_utils = { path = "test_utils" } @@ -69,4 +69,4 @@ path = "src/bin/git_remote_nostr/main.rs" [profile.release] lto = true -strip = "symbols" \ No newline at end of file +strip = "symbols" -- cgit v1.2.3 From 04e7aaf905eda270aedde8c2ca9228ec90e9905f Mon Sep 17 00:00:00 2001 From: DanConwayDev Date: Wed, 16 Jul 2025 09:39:00 +0100 Subject: chore: bump console indicatif as the breaking changes don't impact ngit --- Cargo.lock | 37 +++++++++++++++++++++++++------------ Cargo.toml | 4 ++-- 2 files changed, 27 insertions(+), 14 deletions(-) (limited to 'Cargo.toml') diff --git a/Cargo.lock b/Cargo.lock index 8269d2e..40ac76f 100644 --- a/Cargo.lock +++ b/Cargo.lock @@ -461,6 +461,19 @@ dependencies = [ "windows-sys 0.59.0", ] +[[package]] +name = "console" +version = "0.16.0" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "2e09ced7ebbccb63b4c65413d821f2e00ce54c5ca4514ddc6b3c892fdbcbc69d" +dependencies = [ + "encode_unicode", + "libc", + "once_cell", + "unicode-width", + "windows-sys 0.60.2", +] + [[package]] name = "cpufeatures" version = "0.2.17" @@ -508,7 +521,7 @@ version = "0.11.0" source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "658bce805d770f407bc62102fca7c2c64ceef2fbcb2b8bd19d2765ce093980de" dependencies = [ - "console", + "console 0.15.11", "shell-words", "tempfile", "thiserror 1.0.69", @@ -1131,14 +1144,14 @@ dependencies = [ [[package]] name = "indicatif" -version = "0.17.11" +version = "0.18.0" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "183b3088984b400f4cfac3620d5e076c84da5364016b4f49473de574b2586235" +checksum = "70a646d946d06bedbbc4cac4c218acf4bbf2d87757a784857025f4d447e4e1cd" dependencies = [ - "console", - "number_prefix", + "console 0.16.0", "portable-atomic", "unicode-width", + "unit-prefix", "web-time", ] @@ -1413,7 +1426,7 @@ dependencies = [ "auth-git2", "chacha20poly1305", "clap", - "console", + "console 0.16.0", "dialoguer", "directories", "futures", @@ -1548,12 +1561,6 @@ dependencies = [ "tracing", ] -[[package]] -name = "number_prefix" -version = "0.4.0" -source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "830b246a0e5f20af87141b25c173cd1b609bd7779a4617d6ec582abaf90870f3" - [[package]] name = "object" version = "0.36.7" @@ -2855,6 +2862,12 @@ version = "0.2.1" source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "4a1a07cc7db3810833284e8d372ccdc6da29741639ecc70c9ec107df0fa6154c" +[[package]] +name = "unit-prefix" +version = "0.5.1" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "323402cff2dd658f39ca17c789b502021b3f18707c91cdf22e3838e1b4023817" + [[package]] name = "universal-hash" version = "0.5.1" diff --git a/Cargo.toml b/Cargo.toml index 4311dd7..2b7b529 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -17,12 +17,12 @@ async-trait = "0.1.88" auth-git2 = "0.5.8" chacha20poly1305 = "0.10.1" clap = { version = "4.5.41", features = ["derive"] } -console = "0.15.11" +console = "0.16.0" dialoguer = "0.11.0" directories = "6.0.0" futures = "0.3.31" git2 = "0.20.2" -indicatif = "0.17.11" +indicatif = "0.18.0" nostr = { version = "0.41.0", features = ["nip05", "nip49"] } nostr-connect = "0.41.0" nostr-database = "0.41.0" -- cgit v1.2.3 From 9340ff9678424e95fd5fa2643128eb31e2386108 Mon Sep 17 00:00:00 2001 From: DanConwayDev Date: Wed, 16 Jul 2025 09:45:23 +0100 Subject: chore: bump rust-nostr v42 no breaking changes this time! --- Cargo.lock | 37 +++++++++++++++---------------------- Cargo.toml | 12 ++++++------ test_utils/Cargo.toml | 8 ++++---- 3 files changed, 25 insertions(+), 32 deletions(-) (limited to 'Cargo.toml') diff --git a/Cargo.lock b/Cargo.lock index 40ac76f..b45930a 100644 --- a/Cargo.lock +++ b/Cargo.lock @@ -1333,9 +1333,9 @@ checksum = "13dc2df351e3202783a1fe0d44375f7295ffb4049267b0f3018346dc122a1d94" [[package]] name = "lru" -version = "0.13.0" +version = "0.14.0" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "227748d55f2f0ab4735d87fd623798cb6b664512fe979705f829c9f81c934465" +checksum = "9f8cc7106155f10bdf99a6f379688f543ad6596a415375b36a59a054ceda1198" [[package]] name = "lru-slab" @@ -1404,12 +1404,6 @@ dependencies = [ "getrandom 0.2.16", ] -[[package]] -name = "negentropy" -version = "0.3.1" -source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "e664971378a3987224f7a0e10059782035e89899ae403718ee07de85bec42afe" - [[package]] name = "negentropy" version = "0.5.0" @@ -1466,9 +1460,9 @@ dependencies = [ [[package]] name = "nostr" -version = "0.41.0" +version = "0.42.2" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "95d3f2f0d564cce3ebe09bb1343af67d88c60108cedc518a307dfdf6e3f503b6" +checksum = "d193102a62a22b61f9a61b9df54fb19ebab8c1763d088fbb9a6f0f57000fba2d" dependencies = [ "aes", "base64", @@ -1492,9 +1486,9 @@ dependencies = [ [[package]] name = "nostr-connect" -version = "0.41.0" +version = "0.42.0" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "387abe557e3e43f7704f3c77a9d728de0987108a7f0b5de84f2948310ada11b1" +checksum = "29bcce69dcfe07f399cba2f304b2b0662764eaf35b8e227049c063b1d2ec37d0" dependencies = [ "async-utility", "nostr", @@ -1505,9 +1499,9 @@ dependencies = [ [[package]] name = "nostr-database" -version = "0.41.0" +version = "0.42.0" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "de6dc456a11d26f99a932b6531d94c20cb2e274ada6eab1d2438e2fb9c944af5" +checksum = "b6aafe85dc7c039c399796043b76009fa744c3a45ac073a023932f7b7d91b1e7" dependencies = [ "flatbuffers", "lru", @@ -1517,9 +1511,9 @@ dependencies = [ [[package]] name = "nostr-lmdb" -version = "0.41.0" +version = "0.42.0" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "b0f371f08cef23050bd15deef5fbb34cb24a96314c47462d0b2b9ce7f0902ef1" +checksum = "ed36ce93b11d1dea86b50f26a5bcd7317f237915eeed3948cf52c036ba52872a" dependencies = [ "async-utility", "heed", @@ -1531,16 +1525,15 @@ dependencies = [ [[package]] name = "nostr-relay-pool" -version = "0.41.0" +version = "0.42.0" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "23994b7a613540de50d0b6ac5fcdfeb65d814b0dc5630875d3e1d3e8f05e8c7c" +checksum = "df4d5628d2444349570fb185b0c2d92cfdb7e68d62b13bf3e8a4348b5de7430b" dependencies = [ "async-utility", "async-wsocket", "atomic-destructor", "lru", - "negentropy 0.3.1", - "negentropy 0.5.0", + "negentropy", "nostr", "nostr-database", "tokio", @@ -1549,9 +1542,9 @@ dependencies = [ [[package]] name = "nostr-sdk" -version = "0.41.0" +version = "0.42.0" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "58d201c49818ef560a67f9c26c415007da38b007943e7d1644ac55aa98c55a42" +checksum = "a1e928ba9ac2695fbe10b8aefda59f2abfeb23c10a0e86a0b3e0f6a27bb274a2" dependencies = [ "async-utility", "nostr", diff --git a/Cargo.toml b/Cargo.toml index 2b7b529..249fb02 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -23,12 +23,12 @@ directories = "6.0.0" futures = "0.3.31" git2 = "0.20.2" indicatif = "0.18.0" -nostr = { version = "0.41.0", features = ["nip05", "nip49"] } -nostr-connect = "0.41.0" -nostr-database = "0.41.0" -nostr-lmdb = "0.41.0" -nostr-relay-pool = "0.41.0" -nostr-sdk = "0.41.0" +nostr = { version = "0.42.2", features = ["nip05", "nip49"] } +nostr-connect = "0.42.0" +nostr-database = "0.42.0" +nostr-lmdb = "0.42.0" +nostr-relay-pool = "0.42.0" +nostr-sdk = "0.42.0" passwords = "3.1.16" qrcode = { version = "0.14.1", default-features = false } scrypt = "0.11.0" diff --git a/test_utils/Cargo.toml b/test_utils/Cargo.toml index 8cdb9d5..5d631b8 100644 --- a/test_utils/Cargo.toml +++ b/test_utils/Cargo.toml @@ -10,10 +10,10 @@ dialoguer = "0.11.0" directories = "6.0.0" futures = "0.3.31" git2 = "0.20.2" -nostr = "0.41.0" -nostr-database = "0.41.0" -nostr-lmdb = "0.41.0" -nostr-sdk = "0.41.0" +nostr = "0.42.2" +nostr-database = "0.42.0" +nostr-lmdb = "0.42.0" +nostr-sdk = "0.42.0" once_cell = "1.21.3" rand = "0.8" rexpect = { git = "https://github.com/rust-cli/rexpect.git", rev = "9eb61dd" } -- cgit v1.2.3