trust-graph-test/Cargo.toml

32 lines
694 B
TOML
Raw Normal View History

2021-01-15 19:37:06 +03:00
[package]
name = "trust-graph"
2021-09-30 17:53:29 +03:00
version = "0.2.8"
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]
libp2p-core = { package = "fluence-fork-libp2p-core", version = "0.27.2", features = ["secp256k1"] }
2021-01-15 19:37:06 +03:00
serde = { version = "=1.0.118", features = ["derive"] }
2021-09-30 17:53:29 +03:00
fluence-keypair = { path = "./keypair", version = "0.4.0" }
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"
2021-01-18 20:08:05 +03:00
signature = "1.3.0"
serde_with = "1.6.0"
2021-01-28 11:57:43 +03:00
thiserror = "1.0.23"
sha2 = "0.9.5"
2021-08-01 16:31:13 +03:00
rand = "0.7.0"
2021-04-15 14:00:27 +03:00
[workspace]
members = [
"keypair",
2021-08-01 16:31:13 +03:00
"service"
2021-04-15 14:00:27 +03:00
]