mirror of
https://github.com/aljazceru/pubky-core.git
synced 2025-12-31 12:54:35 +01:00
28 lines
729 B
TOML
28 lines
729 B
TOML
[package]
|
|
name = "pubky-common"
|
|
version = "0.1.0"
|
|
edition = "2021"
|
|
|
|
# See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html
|
|
|
|
[dependencies]
|
|
base32 = "0.5.0"
|
|
blake3 = "1.5.1"
|
|
ed25519-dalek = { version = "2.1.1", features = ["serde"] }
|
|
once_cell = "1.19.0"
|
|
pkarr = { workspace = true }
|
|
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"] }
|
|
|
|
[target.'cfg(target_arch = "wasm32")'.dependencies]
|
|
js-sys = "0.3.69"
|
|
|
|
[dev-dependencies]
|
|
postcard = "1.0.8"
|