diff --git a/Cargo.lock b/Cargo.lock index 184a547..746cb90 100644 --- a/Cargo.lock +++ b/Cargo.lock @@ -1667,7 +1667,7 @@ checksum = "33cb294fe86a74cbcf50d4445b37da762029549ebeea341421c7c70370f86cac" [[package]] name = "pubky" -version = "0.2.0" +version = "0.1.0" dependencies = [ "base64 0.22.1", "bytes", diff --git a/Cargo.toml b/Cargo.toml index 1e59b0f..3b7e4d3 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -10,7 +10,7 @@ members = [ resolver = "2" [workspace.dependencies] -pkarr = { git = "https://github.com/Pubky/pkarr", branch = "serde", package = "pkarr", features = ["async", "serde"] } +pkarr = { version = "2.0.0", git = "https://github.com/Pubky/pkarr", branch = "serde", package = "pkarr", features = ["async", "serde"] } serde = { version = "^1.0.209", features = ["derive"] } [profile.release] diff --git a/pubky/Cargo.toml b/pubky/Cargo.toml index c8ccc0c..cc0004c 100644 --- a/pubky/Cargo.toml +++ b/pubky/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "pubky" -version = "0.2.0" +version = "0.1.0" edition = "2021" description = "Pubky core client" license = "MIT" @@ -18,7 +18,7 @@ bytes = "^1.7.1" base64 = "0.22.1" pubky-common = { version = "0.1.0", path = "../pubky-common" } -pkarr = { git = "https://github.com/Pubky/pkarr", branch = "serde", package = "pkarr", features = ["async", "serde"] } +pkarr = { workspace = true, features = ["async"] } [target.'cfg(not(target_arch = "wasm32"))'.dependencies] reqwest = { version = "0.12.5", features = ["cookies", "rustls-tls"], default-features = false }