-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathCargo.toml
More file actions
55 lines (46 loc) · 1.2 KB
/
Cargo.toml
File metadata and controls
55 lines (46 loc) · 1.2 KB
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
[package]
name = "generic-btree"
version = "0.10.7"
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 <remch183@outlook.com>"]
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"
rustc-hash = "2.1.1"
heapless = "0.9.1"
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.7.0"
jumprope = "1.0.0"
ahash = "0.8.11"
rand = "0.8.5"
color-backtrace = "0.7.0"
ctor = "0.1.26"
pprof = { version = "0.15.0", 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 = []