2021-01-19 17:20:44 +03:00
|
|
|
[package]
|
2021-08-12 15:49:03 +03:00
|
|
|
name = "fluence-keypair"
|
2021-04-15 21:23:03 +03:00
|
|
|
version = "0.3.0"
|
2021-01-19 17:20:44 +03:00
|
|
|
authors = ["Fluence Labs"]
|
|
|
|
edition = "2018"
|
|
|
|
description = "identity"
|
|
|
|
license = "Apache-2.0"
|
2021-03-11 14:48:58 +03:00
|
|
|
repository = "https://github.com/fluencelabs/trust-graph"
|
2021-01-19 17:20:44 +03:00
|
|
|
|
|
|
|
[dependencies]
|
|
|
|
serde = { version = "=1.0.118", features = ["derive"] }
|
|
|
|
serde_json = "1.0.58"
|
|
|
|
bs58 = "0.3.1"
|
2021-04-15 14:00:27 +03:00
|
|
|
ed25519-dalek = { version = "1.0.1", features = ["serde", "std"] }
|
2021-01-19 17:20:44 +03:00
|
|
|
rand = "0.7.0"
|
|
|
|
signature = "1.3.0"
|
2021-01-19 18:28:13 +03:00
|
|
|
ed25519 = "1.0.3"
|
2021-01-21 20:26:17 +03:00
|
|
|
serde_with = "1.6.0"
|
2021-02-11 17:57:09 +03:00
|
|
|
thiserror = "1.0.23"
|
2021-04-15 14:00:27 +03:00
|
|
|
lazy_static = "1.2"
|
2021-08-26 17:27:05 +03:00
|
|
|
libsecp256k1 = "0.3.1"
|
2021-04-15 14:00:27 +03:00
|
|
|
asn1_der = "0.6.1"
|
|
|
|
sha2 = "0.9.1"
|
|
|
|
zeroize = "1"
|
|
|
|
serde_bytes = "0.11"
|
2021-08-26 17:27:05 +03:00
|
|
|
libp2p-core = { package = "fluence-fork-libp2p-core", version = "0.27.2", features = ["secp256k1"]}
|
2021-08-12 16:16:58 +03:00
|
|
|
eyre = "0.6.5"
|
2021-04-15 14:00:27 +03:00
|
|
|
|
2021-08-01 16:31:13 +03:00
|
|
|
[target.'cfg(not(target_arch = "wasm32"))'.dependencies]
|
|
|
|
ring = { version = "0.16.9", features = ["alloc", "std"], default-features = false }
|
|
|
|
|
2021-04-15 14:00:27 +03:00
|
|
|
[dev-dependencies]
|
|
|
|
quickcheck = "0.9.0"
|