mirror of
https://github.com/aljazceru/pubky-core.git
synced 2026-02-23 15:04:39 +01:00
chore: release
This commit is contained in:
8
Cargo.lock
generated
8
Cargo.lock
generated
@@ -2103,7 +2103,7 @@ checksum = "33cb294fe86a74cbcf50d4445b37da762029549ebeea341421c7c70370f86cac"
|
||||
|
||||
[[package]]
|
||||
name = "pubky"
|
||||
version = "0.4.0"
|
||||
version = "0.4.1"
|
||||
dependencies = [
|
||||
"anyhow",
|
||||
"base64 0.22.1",
|
||||
@@ -2135,7 +2135,7 @@ dependencies = [
|
||||
|
||||
[[package]]
|
||||
name = "pubky-common"
|
||||
version = "0.3.0"
|
||||
version = "0.3.1"
|
||||
dependencies = [
|
||||
"argon2",
|
||||
"base32",
|
||||
@@ -2154,7 +2154,7 @@ dependencies = [
|
||||
|
||||
[[package]]
|
||||
name = "pubky-homeserver"
|
||||
version = "0.1.0"
|
||||
version = "0.1.1"
|
||||
dependencies = [
|
||||
"anyhow",
|
||||
"axum",
|
||||
@@ -2186,7 +2186,7 @@ dependencies = [
|
||||
|
||||
[[package]]
|
||||
name = "pubky-testnet"
|
||||
version = "0.1.0"
|
||||
version = "0.1.1"
|
||||
dependencies = [
|
||||
"anyhow",
|
||||
"http-relay 0.2.0 (registry+https://github.com/rust-lang/crates.io-index)",
|
||||
|
||||
@@ -1,6 +1,6 @@
|
||||
[package]
|
||||
name = "pubky-common"
|
||||
version = "0.3.0"
|
||||
version = "0.3.1"
|
||||
edition = "2021"
|
||||
authors = ["Nuh <nuh@nuh.dev>"]
|
||||
description = "Types and struct in common between Pubky client and homeserver"
|
||||
|
||||
@@ -1,6 +1,6 @@
|
||||
[package]
|
||||
name = "pubky-homeserver"
|
||||
version = "0.1.0"
|
||||
version = "0.1.1"
|
||||
edition = "2021"
|
||||
authors = ["Nuh <nuh@nuh.dev>"]
|
||||
description = "Pubky core's homeserver."
|
||||
@@ -33,7 +33,7 @@ hex = "0.4.3"
|
||||
httpdate = "1.0.3"
|
||||
postcard = { version = "1.1.1", features = ["alloc"] }
|
||||
pkarr = { version = "3.3.3", features = ["dht", "lmdb-cache", "tls"] }
|
||||
pubky-common = { path = "../pubky-common" }
|
||||
pubky-common = { version = "0.3.1", path = "../pubky-common" }
|
||||
serde = { version = "1.0.217", features = ["derive"] }
|
||||
tokio = { version = "1.43.0", features = ["full"] }
|
||||
toml = "0.8.20"
|
||||
|
||||
@@ -1,6 +1,6 @@
|
||||
[package]
|
||||
name = "pubky-testnet"
|
||||
version = "0.1.0"
|
||||
version = "0.1.1"
|
||||
edition = "2021"
|
||||
authors = ["Nuh <nuh@nuh.dev>"]
|
||||
description = "A local test network for Pubky Core development."
|
||||
@@ -15,9 +15,9 @@ anyhow = "1.0.95"
|
||||
http-relay = "0.2.0"
|
||||
mainline = "5.2.0"
|
||||
pkarr-relay = "0.5.7"
|
||||
pubky = { path = "../pubky" }
|
||||
pubky-common = { path = "../pubky-common" }
|
||||
pubky-homeserver = { path = "../pubky-homeserver" }
|
||||
pubky = { version = "0.4.1", path = "../pubky" }
|
||||
pubky-common = { version = "0.3.1", path = "../pubky-common" }
|
||||
pubky-homeserver = { version = "0.1.1", path = "../pubky-homeserver" }
|
||||
tokio = { version = "1.43.0", features = ["full"] }
|
||||
tracing-subscriber = "0.3.19"
|
||||
url = "2.5.4"
|
||||
|
||||
@@ -1,6 +1,6 @@
|
||||
[package]
|
||||
name = "pubky"
|
||||
version = "0.4.0"
|
||||
version = "0.4.1"
|
||||
edition = "2021"
|
||||
description = "Pubky core client"
|
||||
license = "MIT"
|
||||
@@ -17,6 +17,7 @@ categories = [
|
||||
crate-type = ["cdylib", "rlib"]
|
||||
|
||||
[dependencies]
|
||||
pubky-common = { version = "0.3.1", path = "../pubky-common" }
|
||||
thiserror = "2.0.11"
|
||||
wasm-bindgen = "0.2.100"
|
||||
url = "2.5.4"
|
||||
@@ -29,7 +30,6 @@ cookie_store = { version = "0.21.1", default-features = false }
|
||||
anyhow = "1.0.95"
|
||||
flume = { version = "0.11.1", default-features = false, features = ["async"] }
|
||||
futures-util = "0.3.31"
|
||||
pubky-common = { path = "../pubky-common" }
|
||||
|
||||
# Native dependencies
|
||||
[target.'cfg(not(target_arch = "wasm32"))'.dependencies]
|
||||
|
||||
Reference in New Issue
Block a user