mirror of
https://github.com/aljazceru/pubky-core.git
synced 2026-02-23 15:04:39 +01:00
32 lines
990 B
TOML
32 lines
990 B
TOML
[package]
|
|
name = "pubky-common"
|
|
description = "Types and struct in common between Pubky client and homeserver"
|
|
version.workspace = true
|
|
edition.workspace = true
|
|
authors.workspace = true
|
|
license.workspace = true
|
|
homepage.workspace = true
|
|
repository.workspace = true
|
|
keywords = ["pkarr", "pubky", "auth", "pubkey"]
|
|
categories = ["web-programming", "authentication", "cryptography"]
|
|
|
|
[dependencies]
|
|
base32 = "0.5.1"
|
|
blake3 = "1.5.5"
|
|
ed25519-dalek = { version = "2.1.1", features = ["serde"] }
|
|
once_cell = "1.20.3"
|
|
rand = "0.9.0"
|
|
thiserror = "2.0.11"
|
|
postcard = { version = "1.1.1", features = ["alloc"] }
|
|
crypto_secretbox = { version = "0.1.1", features = ["std"] }
|
|
argon2 = { version = "0.5.3", features = ["std"] }
|
|
pubky-timestamp = { version = "0.4.0", features = ["full"] }
|
|
serde = { version = "1.0.217", features = ["derive"] }
|
|
pkarr = { workspace = true, features = ["keys"] }
|
|
|
|
[target.'cfg(target_arch = "wasm32")'.dependencies]
|
|
js-sys = "0.3.77"
|
|
|
|
[dev-dependencies]
|
|
postcard = "1.1.1"
|