chore: Release

This commit is contained in:
nazeh
2024-10-25 11:05:27 +03:00
parent 285dd4e2d1
commit a6f7acdc63
2 changed files with 24 additions and 4 deletions

26
Cargo.lock generated
View File

@@ -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",

View File

@@ -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 }