forked from ipfs-rust/ipfs-embed
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathCargo.toml
45 lines (39 loc) · 1.14 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
[workspace]
members = ["core", "db", "net"]
[package]
name = "ipfs-embed"
version = "0.9.0"
authors = ["David Craven <[email protected]>"]
edition = "2018"
license = "MIT OR Apache-2.0"
description = "small embeddable ipfs implementation"
repository = "https://github.com/ipfs-rust/ipfs-embed"
[features]
default = ["db", "net"]
db = ["ipfs-embed-db", "sled"]
net = ["ipfs-embed-net"]
[dependencies]
async-std = "1.8.0"
async-trait = "0.1.42"
fnv = "1.0.7"
futures = "0.3.8"
ipfs-embed-core = { version = "0.9.0", path = "core" }
ipfs-embed-db = { version = "0.9.0", path = "db", optional = true }
ipfs-embed-net = { version = "0.9.0", path = "net", optional = true }
libipld = { version = "0.8.2", default-features = false }
log = "0.4.11"
sled = { version = "0.34.6", optional = true }
[dev-dependencies]
async-std = { version = "1.8.0", features = ["attributes"] }
#async-log = "2.0.0"
#criterion = "0.3.3"
env_logger = "0.8.2"
#ipld-collections = "0.2.0"
libipld = { version = "0.8.2", default-features = false, features = ["dag-cbor", "derive"] }
#model = "0.1.2"
#tempdir = "0.3.7"
[profile.release]
debug = true
[[bench]]
name = "list"
harness = false