summary refs log tree commit diff
path: root/ripple/fossil/Cargo.toml
blob: 6e1bf7bfc81bae4d79fd8fadb321d6896313afca (plain)
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
# SPDX-FileCopyrightText: edef <edef@unfathomable.blue>
# SPDX-License-Identifier: OSL-3.0

[package]
name = "fossil"
version = "0.1.0"
edition = "2021"

[dependencies]
prost = "0.8.0"
bytes = "1.0.1"
blake3 = { version = "1.3.1", features = ["rayon"] }
sled = "0.34.6"
byteorder = "1.4.3"
fuser = "0.11.0"
log = "0.4.14"
libc = "0.2.112"
env_logger = "0.9.0"
lazy_static = "1.4.0"
bao = "0.12.0"
anyhow = "1.0.53"
clap = { version = "3.1.15", features = ["derive"] }
zbase32 = "0.1.2"

[build-dependencies]
prost-build = "0.8.0"

[dev-dependencies]
criterion = "0.3.5"

[[bench]]
name = "chunker"
harness = false