-
Notifications
You must be signed in to change notification settings - Fork 41
/
Copy pathCargo.toml
57 lines (50 loc) · 1.46 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
[package]
name = "libipld"
version = "0.16.0"
authors = ["David Craven <[email protected]>"]
edition = "2021"
license = "MIT OR Apache-2.0"
description = "library for dealing with ipld"
repository = "https://github.com/ipld/libipld"
[package.metadata.release]
consolidate-commits = true
shared-version = true
[dependencies]
fnv = "1.0.7"
libipld-cbor = { version = "0.16.0", path = "dag-cbor", optional = true }
libipld-cbor-derive = { version = "0.16.0", path = "dag-cbor-derive", optional = true }
libipld-core = { version = "0.16.0", path = "core" }
libipld-json = { version = "0.16.0", path = "dag-json", optional = true }
libipld-macro = { version = "0.16.0", path = "macro" }
libipld-pb = { version = "0.16.0", path = "dag-pb", optional = true }
log = "0.4.14"
multihash = { version = "0.18.0", default-features = false, features = ["multihash-impl"] }
thiserror = "1.0.25"
[dev-dependencies]
async-std = { version = "1.9.0", features = ["attributes"] }
criterion = "0.3.4"
proptest = "1.0.0"
model = "0.1.2"
[features]
default = ["dag-cbor", "dag-json", "dag-pb", "derive"]
dag-cbor = ["libipld-cbor"]
dag-json = ["libipld-json"]
dag-pb = ["libipld-pb"]
derive = ["libipld-cbor-derive"]
serde-codec = ["libipld-core/serde-codec"]
arb = ["libipld-core/arb"]
[workspace]
members = [
"core",
"dag-cbor",
"dag-cbor-derive",
"dag-json",
"dag-pb",
"macro",
"dag-cbor-derive/examples/renamed-package",
]
[profile.release]
debug = true
[[bench]]
name = "codec"
harness = false