-
Notifications
You must be signed in to change notification settings - Fork 26
/
Copy pathCargo.toml
63 lines (60 loc) · 1.57 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
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
[package]
name = "wnfs-common"
version = "0.2.0"
description = "Common types for the Webnative Filesystem"
keywords = ["wnfs", "webnative", "ipfs", "decentralisation"]
categories = [
"filesystem",
"cryptography",
"web-programming",
"wasm",
]
license = "Apache-2.0"
readme = "README.md"
edition = "2021"
rust-version = "1.75"
repository = "https://github.com/wnfs-wg/rs-wnfs/tree/main/wnfs-common"
homepage = "https://fission.codes"
authors = ["The Fission Authors"]
[dependencies]
anyhow = "1.0"
async-once-cell = "0.5"
base64 = { version = "0.21", optional = true }
base64-serde = { version = "0.7", optional = true }
blake3 = "1.5.1"
blockstore = "0.5"
bytes = { version = "1.4", features = ["serde"] }
chrono = { version = "0.4", default-features = false, features = ["clock", "std"] }
cid = "0.11"
futures = "0.3"
ipld-core = "0.4"
ipld-dagpb = { version = "0.2", optional = true }
multihash = "0.18"
once_cell = "1.16"
parking_lot = "0.12"
proptest = { version = "1.1", optional = true }
rand_core = "0.6"
serde = { version = "1.0", features = ["rc"] }
serde_ipld_dagcbor = "0.4"
serde_ipld_dagjson = { version = "0.2", optional = true }
serde_json = { version = "1.0", optional = true }
thiserror = "1.0"
[dev-dependencies]
async-std = { version = "1.11", features = ["attributes"] }
base64 = "0.21"
base64-serde = "0.7"
ipld-dagpb = "0.2"
proptest = "1.1"
rand = "0.8"
serde_ipld_dagjson = "0.2"
serde_json = "1.0"
testresult = "0.4.0"
[features]
test_utils = [
"dep:proptest",
"dep:base64-serde",
"dep:base64",
"dep:serde_json",
"dep:serde_ipld_dagjson",
"dep:ipld-dagpb"
]