-
Notifications
You must be signed in to change notification settings - Fork 6
/
Copy pathCargo.toml
61 lines (52 loc) · 1.59 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
[package]
name = "bao-tree"
version = "0.13.0"
authors = ["Rüdiger Klaehn <[email protected]>"]
description = "BLAKE3 verfiied streaming with custom chunk groups and range set queries"
license = "MIT OR Apache-2.0"
repository = "https://github.com/n0-computer/bao-tree"
edition = "2021"
keywords = ["hashing"]
categories = ["data-structures"]
rust-version = "1.75"
# See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html
[dependencies]
iroh-blake3 = "1.4.3"
range-collections = { version = "0.4.5", features = ["new_unchecked"] }
smallvec = "1"
bytes = { version = "1" }
futures-lite = { version = "2.3", optional = true }
self_cell = { version = "1" }
iroh-io = { version = "0.6.0", default_features = false, optional = true }
positioned-io = { version = "0.3.1", default_features = false }
genawaiter = { version = "0.99.1", features = ["futures03"], optional = true }
[features]
tokio_fsm = ["dep:futures-lite", "dep:iroh-io"]
validate = ["dep:genawaiter"]
default = ["tokio_fsm", "validate"]
[dev-dependencies]
hex = "0.4.3"
bao = "0.12.1"
tokio = { version = "1", features = ["full"] }
proptest = "1.0.0"
rand = "0.8.5"
criterion = "0.4.0"
tempfile = "3.6.0"
iroh-io = { version = "0.6.0" }
warp = "0.3.5"
proc-macro2 = "1.0.66"
test-strategy = "0.3.1"
serde = "1"
clap = { version = "4", features = ["derive"] }
postcard = { version = "1", features = ["use-std"] }
anyhow = "1.0.75"
[[bench]]
name = "tree_bench"
harness = false
[workspace]
members = ["cli"]
[package.metadata.docs.rs]
all-features = true
[[example]]
name = "cli"
required-features = ["tokio_fsm"]