-
Notifications
You must be signed in to change notification settings - Fork 3
/
Copy pathCargo.toml
48 lines (42 loc) · 1.32 KB
/
Cargo.toml
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
[package]
name = "graphsync"
version = "0.2.0"
edition = "2021"
license = "MIT"
description = "Implementation of the GraphSync wire protocol"
repository = "https://github.com/retrieval-markets-lab/rs-graphsync"
[dependencies]
anyhow = "1.0.51"
uuid = { version = "1.1.2", features = ["serde", "v4"] }
ipld_traversal = { path = "./traversal", version = "0.2.1" }
serde = { version = "1.0", features = ["derive"] }
serde_tuple = "0.5"
serde_repr = "0.1"
serde_ipld_dagcbor = "0.2.2"
serde_bytes = { package = "cs_serde_bytes", version = "0.12" }
libp2p = { version = "0.50", features = ["wasm-ext"], default-features = false }
futures = "0.3.21"
async-std = { version = "1.12.0", features = ["attributes", "unstable"] }
libipld = { version = "0.15.0", features = ["serde-codec"] }
thiserror = "1.0.37"
smallvec = "1.9.0"
[dev-dependencies]
hex = "0.4.3"
rand = "0.8.5"
clap = { version = "3.2.18", features = ["derive"] }
criterion = { version = "0.3", features = ["async_futures", "async_std"] }
libp2p = { version = "0.50", features = ["dns", "macros", "websocket", "mplex", "noise", "identify", "tcp", "async-std"], default-features = false }
[workspace]
members = [
"traversal",
"libp2p-wasm-ws",
"examples/wasm",
]
[[example]]
name = "data_transfer"
[[bench]]
name = "e2e"
harness = false
[[bench]]
name = "traversal"
harness = false