trust-graph-test/Cargo.toml

33 lines
780 B
TOML
Raw Normal View History

2021-01-15 19:37:06 +03:00
[package]
name = "trust-graph"
2021-03-11 14:48:58 +03:00
version = "0.2.6"
2021-01-15 19:37:06 +03:00
authors = ["Fluence Labs"]
edition = "2018"
description = "trust graph"
license = "Apache-2.0"
2021-03-11 14:48:58 +03:00
repository = "https://github.com/fluencelabs/trust-graph"
2021-01-15 19:37:06 +03:00
[dependencies]
2021-04-15 14:00:27 +03:00
libp2p-core = { git = "https://github.com/fluencelabs/rust-libp2p", branch = "identity_rework", package = "fluence-fork-libp2p-core" }
2021-01-15 19:37:06 +03:00
serde = { version = "=1.0.118", features = ["derive"] }
2021-04-15 14:00:27 +03:00
fluence-identity = {path = "./identity"}
2021-01-15 19:37:06 +03:00
serde_json = "1.0.58"
bs58 = "0.3.1"
failure = "0.1.6"
log = "0.4.11"
ref-cast = "1.0.2"
derivative = "2.1.1"
ed25519-dalek = { version = "1.0.1", features = ["serde"] }
2021-01-18 20:08:05 +03:00
rand = "0.7.0"
signature = "1.3.0"
serde_with = "1.6.0"
2021-01-28 11:57:43 +03:00
thiserror = "1.0.23"
2021-04-15 14:00:27 +03:00
libsecp256k1 = "0.3.5"
ring = "0.16.20"
[workspace]
members = [
"identity"
]