From 7e87e02ae949def6fe83300d384ee16ee3f51df6 Mon Sep 17 00:00:00 2001 From: SHAcollision <127778313+SHAcollision@users.noreply.github.com> Date: Tue, 18 Feb 2025 07:00:39 -0400 Subject: [PATCH] chore(deps): bump pkarr to v3.3.1 pkarr-relay to v0.5.6 (#69) * chore(deps): bump pkarr to v3.3.1 pkarr-relay to v0.5.6 * deps(testnet): force deps from workspace members --- pubky-common/Cargo.toml | 2 +- pubky-homeserver/Cargo.toml | 14 +++++++++++--- pubky-testnet/Cargo.toml | 8 ++++---- pubky/Cargo.toml | 14 +++++++++++--- 4 files changed, 27 insertions(+), 11 deletions(-) diff --git a/pubky-common/Cargo.toml b/pubky-common/Cargo.toml index ac126e0..f818be0 100644 --- a/pubky-common/Cargo.toml +++ b/pubky-common/Cargo.toml @@ -23,7 +23,7 @@ argon2 = { version = "0.5.3", features = ["std"] } pubky-timestamp = { version = "0.4.0", features = ["full"] } serde = { version = "1.0.217", features = ["derive"] } -pkarr = { version = "3.1.1", default-features = false, features = ["keys"] } +pkarr = { version = "3.3.1", default-features = false, features = ["keys"] } [target.'cfg(target_arch = "wasm32")'.dependencies] js-sys = "0.3.77" diff --git a/pubky-homeserver/Cargo.toml b/pubky-homeserver/Cargo.toml index 373f80b..93964f5 100644 --- a/pubky-homeserver/Cargo.toml +++ b/pubky-homeserver/Cargo.toml @@ -8,12 +8,20 @@ license = "MIT" homepage = "https://github.com/pubky/pubky-core" repository = "https://github.com/pubky/pubky-core" keywords = ["pkarr", "sovereign", "web", "pkarr", "datastore"] -categories = ["network-programming", "cryptography", "web-programming", "authentication"] +categories = [ + "network-programming", + "cryptography", + "web-programming", + "authentication", +] [dependencies] anyhow = "1.0.95" axum = { version = "0.8.1", features = ["macros"] } -axum-extra = { version = "0.10.0", features = ["typed-header", "async-read-body"] } +axum-extra = { version = "0.10.0", features = [ + "typed-header", + "async-read-body", +] } base32 = "0.5.1" bytes = "^1.10.0" clap = { version = "4.5.29", features = ["derive"] } @@ -24,7 +32,7 @@ heed = "0.21.0" hex = "0.4.3" httpdate = "1.0.3" postcard = { version = "1.1.1", features = ["alloc"] } -pkarr = { version = "3.1.1", features = ["dht", "lmdb-cache", "tls"] } +pkarr = { version = "3.3.1", features = ["dht", "lmdb-cache", "tls"] } pubky-common = "0.3.0" serde = { version = "1.0.217", features = ["derive"] } tokio = { version = "1.43.0", features = ["full"] } diff --git a/pubky-testnet/Cargo.toml b/pubky-testnet/Cargo.toml index 9f1a82c..7f984b7 100644 --- a/pubky-testnet/Cargo.toml +++ b/pubky-testnet/Cargo.toml @@ -14,10 +14,10 @@ categories = ["web-programming", "authentication", "cryptography"] anyhow = "1.0.95" http-relay = "0.2.0" mainline = "5.2.0" -pkarr-relay = "0.3.0" -pubky = "0.4.0" -pubky-common = "0.3.0" -pubky-homeserver = "0.1.0" +pkarr-relay = "0.5.6" +pubky = { version = "0.4.0", path = "../pubky" } +pubky-common = { version = "0.3.0", path = "../pubky-common" } +pubky-homeserver = { version = "0.1.0", path = "../pubky-homeserver" } tokio = { version = "1.43.0", features = ["full"] } tracing-subscriber = "0.3.19" url = "2.5.4" diff --git a/pubky/Cargo.toml b/pubky/Cargo.toml index fd36501..513dcc8 100644 --- a/pubky/Cargo.toml +++ b/pubky/Cargo.toml @@ -6,7 +6,12 @@ description = "Pubky core client" license = "MIT" repository = "https://github.com/pubky/pubky" keywords = ["web", "dht", "dns", "decentralized", "identity"] -categories = ["network-programming", "cryptography", "web-programming", "authentication"] +categories = [ + "network-programming", + "cryptography", + "web-programming", + "authentication", +] [lib] crate-type = ["cdylib", "rlib"] @@ -18,7 +23,7 @@ url = "2.5.4" bytes = "^1.10.0" base64 = "0.22.1" -pkarr = { version = "3.1.1", features = ["full"] } +pkarr = { version = "3.3.1", features = ["full"] } cookie = "0.18.1" tracing = "0.1.41" cookie_store = { version = "0.21.1", default-features = false } @@ -29,7 +34,10 @@ pubky-common = "0.3.0" # Native dependencies [target.'cfg(not(target_arch = "wasm32"))'.dependencies] -reqwest = { version = "0.12.12", features = ["cookies", "rustls-tls"], default-features = false } +reqwest = { version = "0.12.12", features = [ + "cookies", + "rustls-tls", +], default-features = false } tokio = { version = "1.43.0", features = ["full"] } # Wasm dependencies