2021-01-15 16:37:06 +00:00
|
|
|
[package]
|
|
|
|
name = "trust-graph"
|
2021-11-12 13:19:16 +00:00
|
|
|
version = "0.3.0"
|
2021-01-15 16:37:06 +00:00
|
|
|
authors = ["Fluence Labs"]
|
2023-01-30 10:43:16 +00:00
|
|
|
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"] }
|
2021-01-20 13:14:01 +00:00
|
|
|
|
2023-01-27 14:09:12 +00:00
|
|
|
fluence-keypair = { path = "./keypair", version = "0.9.0" }
|
2023-03-15 22:17:21 +00:00
|
|
|
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"
|
2023-03-15 22:17:21 +00:00
|
|
|
sha2 = "0.10.6"
|
|
|
|
rand = "0.8.5"
|
|
|
|
nonempty = "0.8.1"
|
2021-04-15 11:00:27 +00:00
|
|
|
|
|
|
|
[workspace]
|
|
|
|
members = [
|
2021-11-12 13:19:16 +00:00
|
|
|
"keypair",
|
|
|
|
"service"
|
2021-04-15 11:00:27 +00:00
|
|
|
]
|
2022-10-06 12:10:16 +00:00
|
|
|
|
|
|
|
[workspace.dependencies]
|
2023-03-15 22:17:21 +00:00
|
|
|
libp2p-identity = { version = "0.1.0", default-features = false, features = ["peerid", "rsa", "ed25519", "secp256k1", "multihash"] }
|