Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
383 changes: 290 additions & 93 deletions Cargo.lock

Large diffs are not rendered by default.

6 changes: 3 additions & 3 deletions Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -46,13 +46,13 @@ mainline = { version = "6.1.1" }
pkarr-relay = { version = "0.11.4" }
log = "0.4.29"
url = "2.5.8"
anyhow = "1.0.101"
anyhow = "1.0.102"
axum = "0.8.8"
axum-server = "0.8.0"
reqwest = { version = "0.13.2", default-features = false }
tracing = "0.1.44"
tracing-subscriber = "0.3.22"
tokio = "1.49.0"
tokio = "1.50.0"
tower-http = "0.6.8"
thiserror = "2.0.18"
clap = "4.5.58"
clap = "4.5.60"
2 changes: 1 addition & 1 deletion e2e/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,7 @@ tokio = { workspace = true, features = ["full", "test-util"] }
tracing-subscriber.workspace = true
pkarr = { workspace = true }
bytes = "1.10.1"
rand = "0.9"
rand = "0.10"
serde = { version = "1", features = ["derive"] }
serde_json = "1"

Expand Down
4 changes: 2 additions & 2 deletions examples/rust/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -41,10 +41,10 @@ default = ["embedded-postgres"]
embedded-postgres = ["pubky-testnet/embedded-postgres"]

[dependencies]
futures-util = "0.3.31"
futures-util = "0.3.32"
anyhow.workspace = true
base64 = "0.22.1"
clap = { version = "4.5.48", features = ["derive"] }
clap = { version = "4.5.60", features = ["derive"] }
pubky = { path = "../../pubky-sdk", version = "0.6.0" }
pubky-testnet = { path = "../../pubky-testnet", version = "0.6.0" }
pubky-common = { path = "../../pubky-common", version = "0.6.0" }
Expand Down
4 changes: 2 additions & 2 deletions http-relay/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -14,11 +14,11 @@ categories = ["web-programming"]
anyhow.workspace = true
axum.workspace = true
axum-server.workspace = true
futures-util = "0.3.31"
futures-util = "0.3.32"
tokio = { workspace = true, features = ["full"] }
tracing.workspace = true
url.workspace = true
tower-http = { workspace = true, features = ["cors", "trace"] }

[dev-dependencies]
axum-test = "17.3.0"
axum-test = "18.2.1"
2 changes: 1 addition & 1 deletion pkarr-republisher/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -23,4 +23,4 @@ clap = { workspace = true, features = ["derive"] }
tracing-subscriber = { workspace = true, features = ["env-filter"] }
ctrlc = "3.5.2"
hex = "0.4.3"
rand = "0.9.2"
rand = "0.10.0"
2 changes: 1 addition & 1 deletion pubky-sdk/bindings/js/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -54,7 +54,7 @@ web-sys = { version = "0.3.77", default-features = false, features = [
"ServiceWorkerGlobalScope",
] }
url.workspace = true
getrandom = { version = "0.3.3", features = ["wasm_js"] }
getrandom = { version = "0.4.1", features = ["wasm_js"] }
reqwest = { workspace = true, features = [
"stream",
] }
Expand Down
2 changes: 1 addition & 1 deletion test_utils/test_macro/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -18,7 +18,7 @@ proc-macro2 = "1.0"
quote = "1.0"
syn = { version = "2.0", features = ["full"] }
pubky_test_utils_drop_db_helper = { path = "../drop_db_helper", version = "0.1.0" }
proc-macro-crate = "3.3.0"
proc-macro-crate = "3.5.0"


[dev-dependencies]
Expand Down
Loading