trust-graph/Cargo.toml

32 lines
708 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 = "2021"
2021-01-15 16:37:06 +00:00
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]
2022-01-13 16:37:23 +00:00
serde = { version = "1.0.118", features = ["derive"] }
fluence-keypair = { path = "./keypair", version = "0.9.0" }
bs58 = "0.4.0"
2021-01-15 16:37:06 +00:00
failure = "0.1.6"
log = "0.4.11"
ref-cast = "1.0.2"
derivative = "2.1.1"
2021-01-28 08:57:43 +00:00
thiserror = "1.0.23"
sha2 = "0.10.6"
rand = "0.8.5"
nonempty = "0.8.1"
2021-04-15 11:00:27 +00:00
[workspace]
members = [
"keypair",
"service"
2021-04-15 11:00:27 +00:00
]
[workspace.dependencies]
libp2p-identity = { version = "0.1.0", default-features = false, features = ["peerid", "rsa", "ed25519", "secp256k1", "multihash"] }