From a6f7acdc63a052198bfe5d92e2508c417604dbfa Mon Sep 17 00:00:00 2001 From: nazeh Date: Fri, 25 Oct 2024 11:05:27 +0300 Subject: [PATCH] chore: Release --- Cargo.lock | 26 +++++++++++++++++++++++--- pubky/Cargo.toml | 2 +- 2 files changed, 24 insertions(+), 4 deletions(-) diff --git a/Cargo.lock b/Cargo.lock index 746cb90..40bbde5 100644 --- a/Cargo.lock +++ b/Cargo.lock @@ -149,7 +149,7 @@ dependencies = [ "base64 0.22.1", "clap", "pubky", - "pubky-common", + "pubky-common 0.1.0", "reqwest", "rpassword", "tokio", @@ -1673,7 +1673,7 @@ dependencies = [ "bytes", "js-sys", "pkarr", - "pubky-common", + "pubky-common 0.1.0 (git+https://github.com/pubky/pubky-core)", "pubky_homeserver", "reqwest", "thiserror", @@ -1702,6 +1702,26 @@ dependencies = [ "thiserror", ] +[[package]] +name = "pubky-common" +version = "0.1.0" +source = "git+https://github.com/pubky/pubky-core#60c5cf10c13c17ff7e88c7e478011cdaaadff2f8" +dependencies = [ + "argon2", + "base32", + "blake3", + "crypto_secretbox", + "ed25519-dalek", + "js-sys", + "once_cell", + "pkarr", + "postcard", + "pubky-timestamp", + "rand", + "serde", + "thiserror", +] + [[package]] name = "pubky-timestamp" version = "0.2.0" @@ -1736,7 +1756,7 @@ dependencies = [ "libc", "pkarr", "postcard", - "pubky-common", + "pubky-common 0.1.0", "reqwest", "serde", "tokio", diff --git a/pubky/Cargo.toml b/pubky/Cargo.toml index cc0004c..6eb0be9 100644 --- a/pubky/Cargo.toml +++ b/pubky/Cargo.toml @@ -17,8 +17,8 @@ url = "2.5.2" bytes = "^1.7.1" base64 = "0.22.1" -pubky-common = { version = "0.1.0", path = "../pubky-common" } pkarr = { workspace = true, features = ["async"] } +pubky-common = { git = "https://github.com/pubky/pubky-core", version = "0.1.0" } [target.'cfg(not(target_arch = "wasm32"))'.dependencies] reqwest = { version = "0.12.5", features = ["cookies", "rustls-tls"], default-features = false }