Skip to content

Commit

Permalink
chore: publish [email protected]
Browse files Browse the repository at this point in the history
  • Loading branch information
Nuhvi committed Oct 25, 2024
1 parent 8e1ec66 commit 892c89c
Show file tree
Hide file tree
Showing 4 changed files with 62 additions and 78 deletions.
123 changes: 52 additions & 71 deletions Cargo.lock

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

9 changes: 6 additions & 3 deletions pubky-common/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,7 +1,10 @@
[package]
name = "pubky-common"
version = "0.0.0"
version = "0.1.0"
edition = "2021"
description = "Types and struct in common between Pubky client and homeserver"
license = "MIT"
repository = "https://github.com/pubky/pubky-core"

# See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html

Expand All @@ -10,15 +13,15 @@ base32 = "0.5.0"
blake3 = "1.5.1"
ed25519-dalek = { version = "2.1.1", features = ["serde"] }
once_cell = "1.19.0"
pkarr = { version = "2.2.0", git = "https://github.com/Pubky/pkarr", branch = "serde", package = "pkarr", features = ["serde"] }
rand = "0.8.5"
thiserror = "1.0.60"
postcard = { version = "1.0.8", features = ["alloc"] }
crypto_secretbox = { version = "0.1.1", features = ["std"] }
argon2 = { version = "0.5.3", features = ["std"] }

serde = { workspace = true }
pubky-timestamp = { version = "0.2.0", features = ["full"] }
serde = { version = "1.0.213", features = ["derive"] }
pkarr = { version = "2.2.1-alpha.2", features = ["serde"] }

[target.'cfg(target_arch = "wasm32")'.dependencies]
js-sys = "0.3.69"
Expand Down
4 changes: 2 additions & 2 deletions pubky-homeserver/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -17,10 +17,10 @@ heed = "0.20.3"
hex = "0.4.3"
httpdate = "1.0.3"
libc = "0.2.159"
pkarr = { workspace = true }
postcard = { version = "1.0.8", features = ["alloc"] }
pkarr = { version = "2.2.1-alpha.2", features = ["serde", "async"] }
pubky-common = { version = "0.1.0", path = "../pubky-common" }
serde = { workspace = true }
serde = { version = "1.0.213", features = ["derive"] }
tokio = { version = "1.37.0", features = ["full"] }
toml = "0.8.19"
tower-cookies = "0.10.0"
Expand Down
4 changes: 2 additions & 2 deletions pubky/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -17,8 +17,8 @@ url = "2.5.2"
bytes = "^1.7.1"
base64 = "0.22.1"

pkarr = { workspace = true, features = ["async"] }
pubky-common = { git = "https://github.com/pubky/pubky-core", version = "0.1.0" }
pkarr = { version = "2.2.1-alpha.2", features = ["serde", "async"] }
pubky-common = { version = "0.1.0", path = "../pubky-common" }

[target.'cfg(not(target_arch = "wasm32"))'.dependencies]
reqwest = { version = "0.12.5", features = ["cookies", "rustls-tls"], default-features = false }
Expand Down

0 comments on commit 892c89c

Please sign in to comment.