trust-graph/Cargo.toml

33 lines
700 B
TOML
Raw Normal View History

2021-01-15 16:37:06 +00:00
[package]
name = "trust-graph"
version = "0.3.0"
2021-01-15 16:37:06 +00:00
authors = ["Fluence Labs"]
edition = "2018"
description = "trust graph"
license = "Apache-2.0"
2021-03-11 11:48:58 +00:00
repository = "https://github.com/fluencelabs/trust-graph"
2021-01-15 16:37:06 +00:00
[dependencies]
libp2p-core = { version = "0.33", default-features = false, features = [ "secp256k1" ] }
2022-01-13 16:37:23 +00:00
serde = { version = "1.0.118", features = ["derive"] }
2022-09-19 16:21:55 +00:00
fluence-keypair = { path = "./keypair", version = "0.8.0" }
2021-01-15 16:37:06 +00: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 17:08:05 +00:00
signature = "1.3.0"
serde_with = "1.6.0"
2021-01-28 08:57:43 +00:00
thiserror = "1.0.23"
sha2 = "0.9.5"
rand = "0.7.0"
2021-12-13 16:40:16 +00:00
nonempty = "0.7.0"
2021-04-15 11:00:27 +00:00
[workspace]
members = [
"keypair",
"service"
2021-04-15 11:00:27 +00:00
]