mwixnet/onion/Cargo.toml

38 lines
960 B
TOML
Raw Normal View History

[package]
name = "grin_onion"
version = "0.1.0"
edition = "2021"
# See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html
[dependencies]
2024-04-25 17:39:13 +03:00
blake2 = { package = "blake2-rfc", version = "0.2" }
byteorder = "1"
bytes = "0.5.6"
chacha20 = "0.8.1"
curve25519-dalek = "2.1"
ed25519-dalek = "1.0.1"
2024-04-25 17:39:13 +03:00
hmac = { version = "0.12.0", features = ["std"] }
itertools = { version = "0.10.3" }
lazy_static = "1"
rand = "0.7.3"
rpassword = "4.0"
2024-04-25 17:39:13 +03:00
serde = { version = "1", features = ["derive"] }
serde_derive = "1"
serde_json = "1"
sha2 = "0.10.0"
thiserror = "1"
toml = "0.5"
x25519-dalek = "0.6.0"
2024-05-16 17:16:20 +03:00
grin_secp256k1zkp = { version = "0.7.14", features = ["bullet-proof-sizing"] }
grin_api = "5.3.1"
grin_core = "5.3.1"
grin_chain = "5.3.1"
grin_keychain = "5.3.1"
grin_servers = "5.3.1"
grin_store = "5.3.1"
grin_util = "5.3.1"
grin_wallet_api = "5.3.1"
grin_wallet_impls = "5.3.1"
grin_wallet_libwallet = "5.3.1"
grin_wallet_util = "5.3.1"