-
Notifications
You must be signed in to change notification settings - Fork 142
/
Copy pathCargo.toml
32 lines (29 loc) · 975 Bytes
/
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
[package]
name = "fvm_ipld_kamt"
description = "Sharded IPLD Map implementation with level skipping."
version = "0.4.3"
license = "MIT OR Apache-2.0"
edition = "2021"
repository = "https://github.com/filecoin-project/ref-fvm"
[dependencies]
serde = { workspace = true }
byteorder = { workspace = true }
cid = { workspace = true, features = ["serde"] }
multihash-codetable = { workspace = true }
thiserror = { workspace = true }
once_cell = { workspace = true }
anyhow = { workspace = true }
fvm_ipld_encoding = { workspace = true }
fvm_ipld_blockstore = { workspace = true }
[dev-dependencies]
hex = { workspace = true }
criterion = { workspace = true }
unsigned-varint = { workspace = true }
quickcheck = { workspace = true }
quickcheck_macros = { workspace = true }
rand = { workspace = true }
[[bench]]
name = "kamt_benchmark"
path = "benches/kamt_benchmark.rs"
harness = false