35 lines
796 B
TOML
Raw Normal View History

2021-01-18 03:57:10 +03:00
[package]
name = "trust-graph-wasm"
version = "0.2.0"
authors = ["Fluence Labs"]
edition = "2018"
description = "trust graph wasm"
license = "Apache-2.0"
[[bin]]
name = "trust-graph"
path = "src/main.rs"
[dependencies]
2021-08-01 16:31:13 +03:00
trust-graph = { version = "0.2.6", path = "../." }
fluence-keypair = { version = "0.3.0", path = "../keypair" }
2021-08-01 16:31:13 +03:00
marine-rs-sdk = { version = "0.6.11", features = ["logger"] }
2021-09-06 18:13:08 +03:00
marine-sqlite-connector = "0.5.1"
2021-08-01 16:31:13 +03:00
libp2p-core = { package = "fluence-fork-libp2p-core", version = "0.27.2", features = ["secp256k1"]}
2021-01-19 17:25:28 +03:00
log = "0.4.8"
anyhow = "1.0.31"
boolinator = "2.4.0"
once_cell = "1.4.1"
parking_lot = "0.11.1"
serde_json = "1.0"
bs58 = "0.3.1"
2021-01-25 15:32:43 +03:00
rmp-serde = "0.15.0"
bincode = "1.3.1"
serde_bencode = "^0.2.3"
2021-02-09 14:31:41 +03:00
thiserror = "1.0.23"
2021-08-09 16:53:18 +03:00
[dev-dependencies]
2021-09-16 16:24:46 +03:00
marine-rs-sdk-test = "0.1.11"