trust-graph/keypair/Cargo.toml

31 lines
933 B
TOML
Raw Normal View History

2021-01-19 14:20:44 +00:00
[package]
name = "fluence-keypair"
2023-12-25 14:42:20 +00:00
version = "0.10.4"
2021-01-19 14:20:44 +00:00
authors = ["Fluence Labs"]
edition = "2021"
description = "unified keypair API based on libp2p-identity"
2021-01-19 14:20:44 +00:00
license = "Apache-2.0"
2021-03-11 11:48:58 +00:00
repository = "https://github.com/fluencelabs/trust-graph"
2021-01-19 14:20:44 +00:00
[dependencies]
2022-01-13 16:37:23 +00:00
serde = { version = "1.0.118", features = ["derive"] }
2023-06-29 16:21:14 +00:00
bs58 = "0.5.0"
ed25519-dalek = { version = "2.0.0", features = ["serde", "std", "rand_core"] }
rand = "0.8.5"
2021-02-11 14:57:09 +00:00
thiserror = "1.0.23"
lazy_static = "1.4"
libsecp256k1 = "0.7.1"
2021-04-15 11:00:27 +00:00
asn1_der = "0.6.1"
sha2 = "0.10.6"
2021-04-15 11:00:27 +00:00
zeroize = "1"
serde_bytes = "0.11"
eyre = "0.6.5"
libp2p-identity = { workspace = true, default-features = false, features = ["peerid", "rsa", "ed25519", "secp256k1"] }
multihash = { version = "0.18.0", features = ["identity"] }
[target.'cfg(not(target_arch = "wasm32"))'.dependencies]
ring = { version = "0.16.9", features = ["alloc", "std"], default-features = false }
2021-04-15 11:00:27 +00:00
[dev-dependencies]
quickcheck = "1.0.3"