-
Notifications
You must be signed in to change notification settings - Fork 0
/
Cargo.toml
56 lines (47 loc) · 1.22 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
[package]
name = "generic-btree"
author = "Zixuan Chen"
version = "0.10.5"
edition = "2021"
description = "Generic BTree for versatile purposes"
readme = "README.md"
license = "MIT"
homepage = "https://github.com/loro-dev/generic-btree"
repository = "https://github.com/loro-dev/generic-btree"
authors = ["zxch3n <[email protected]>"]
keywords = ["btree", "data-structure"]
include = ["Cargo.toml", "/src/**/*.rs", "/benches/**/*.rs"]
documentation = "https://docs.rs/generic-btree"
# See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html
[dependencies]
arref = "0.1.0"
fxhash = "0.2.1"
heapless = "0.7.16"
itertools = "0.11.0"
proc-macro2 = "1.0.67"
thunderdome = { version = "0.6.2", package = "loro-thunderdome" }
[dev-dependencies]
arbitrary = { version = "1.2.3", features = ["derive"] }
criterion = "0.4.0"
jumprope = "1.0.0"
ahash = "0.8.11"
rand = "0.8.5"
color-backtrace = "0.5.1"
ctor = "0.1.26"
pprof = { version = "0.11.1", features = [
"flamegraph",
"criterion",
"frame-pointer",
] }
serde_json = "1.0.93"
flate2 = "1.0.25"
[[bench]]
name = "bench_ord"
harness = false
[[bench]]
name = "bench_rope"
harness = false
[profile.release]
debug = true
[features]
test = []