Skip to content
Draft
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
14 changes: 7 additions & 7 deletions Cargo.lock

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

2 changes: 1 addition & 1 deletion e2e/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
[package]
name = "e2e"
edition.workspace = true
version = "0.6.0"
version = "0.7.0-rc.1"
publish = false

[dependencies]
Expand Down
10 changes: 5 additions & 5 deletions examples/rust/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[package]
name = "pubky-core-examples"
version = "0.6.0"
version = "0.7.0-rc.1"
edition.workspace = true
publish = false

Expand Down Expand Up @@ -41,10 +41,10 @@ futures-util = "0.3.31"
anyhow.workspace = true
base64 = "0.22.1"
clap = { version = "4.5.48", features = ["derive"] }
pubky = { path = "../../pubky-sdk", version = "0.6.0" }
pubky-testnet = { path = "../../pubky-testnet", version = "0.6.0" }
pubky-common = { path = "../../pubky-common", version = "0.6.0" }
reqwest.workspace = true
pubky = { path = "../../pubky-sdk", version = "0.7.0-rc.1" }
pubky-testnet = { path = "../../pubky-testnet", version = "0.7.0-rc.1" }
pubky-common = { path = "../../pubky-common", version = "0.7.0-rc.1" }
reqwest = "0.12.23"
rpassword = "7.4.0"
tokio = { workspace = true, features = ["macros", "rt-multi-thread"] }
tracing-subscriber = { workspace = true, features = ["env-filter"] }
Expand Down
2 changes: 1 addition & 1 deletion pubky-common/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
[package]
name = "pubky-common"
description = "Types and struct in common between Pubky client and homeserver"
version = "0.6.0"
version = "0.7.0-rc.1"
edition.workspace = true
authors.workspace = true
license.workspace = true
Expand Down
4 changes: 2 additions & 2 deletions pubky-homeserver/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
[package]
name = "pubky-homeserver"
description = "Pubky core's homeserver."
version = "0.6.0"
version = "0.7.0-rc.1"
edition.workspace = true
authors.workspace = true
license.workspace = true
Expand Down Expand Up @@ -33,7 +33,7 @@ hex = "0.4.3"
httpdate = "1.0.3"
postcard = { version = "1.1.1", features = ["alloc"] }
pkarr = { workspace = true, features = ["dht", "lmdb-cache", "tls"] }
pubky-common = { path = "../pubky-common", version = "0.6.0" }
pubky-common = { path = "../pubky-common", version = "0.7.0-rc.1" }
serde = { version = "1.0.217", features = ["derive"] }
tokio = { workspace = true, features = ["full"] }
toml = "0.8.20"
Expand Down
6 changes: 3 additions & 3 deletions pubky-sdk/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
[package]
name = "pubky"
description = "Pubky SDK"
version = "0.6.0"
version = "0.7.0-rc.1"
edition = "2024"
authors = [
"SeverinAlexB <severin@synonym.to>",
Expand All @@ -28,8 +28,8 @@ default = []
json = ["dep:serde", "reqwest/json"]

[dependencies]
pubky-common = { path = "../pubky-common", version = "0.6.0" }
thiserror.workspace = true
pubky-common = { path = "../pubky-common", version = "0.7.0-rc.1" }
thiserror = "2.0.11"
eventsource-stream = "0.2.3"
url.workspace = true
base64 = "0.22.1"
Expand Down
2 changes: 1 addition & 1 deletion pubky-sdk/bindings/js/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[package]
name = "pubky-wasm"
version = "0.6.0"
version = "0.7.0-rc.1"
edition = "2024"
description = "Pubky-Core Client WASM bindings"
authors = [
Expand Down
2 changes: 1 addition & 1 deletion pubky-sdk/bindings/js/pkg/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@
"name": "@synonymdev/pubky",
"type": "module",
"description": "Pubky client",
"version": "0.6.0",
"version": "0.7.0-rc.1",
"license": "MIT",
"repository": {
"type": "git",
Expand Down
8 changes: 4 additions & 4 deletions pubky-testnet/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
[package]
name = "pubky-testnet"
description = "A local test network for Pubky Core development."
version = "0.6.0"
version = "0.7.0-rc.1"
edition.workspace = true
authors.workspace = true
license.workspace = true
Expand All @@ -19,9 +19,9 @@ tokio = { workspace = true, features = ["full"] }
tracing-subscriber.workspace = true
url.workspace = true

pubky = { path = "../pubky-sdk", version = "0.6.0", features = ["json"] }
pubky-common = { path = "../pubky-common", version = "0.6.0" }
pubky-homeserver = { path = "../pubky-homeserver", version = "0.6.0", default-features = false, features = [
pubky = { path = "../pubky-sdk", version = "0.7.0-rc.1", features = ["json"] }
pubky-common = { path = "../pubky-common", version = "0.7.0-rc.1" }
pubky-homeserver = { path = "../pubky-homeserver", version = "0.7.0-rc.1", default-features = false, features = [
"testing",
] }
pubky_test_utils = { path = "../test_utils/pubky_test", version = "0.1.0" }
Expand Down
Loading