-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathCargo.toml
More file actions
61 lines (52 loc) · 1.19 KB
/
Cargo.toml
File metadata and controls
61 lines (52 loc) · 1.19 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
56
57
58
59
60
61
[package]
name = "turdb"
version = "0.1.0"
edition = "2021"
description = "High-performance embedded database with row storage and native vector search"
license = "MIT"
[features]
default = []
cli = ["rustyline"]
timing = []
[dependencies]
eyre = "0.6"
parking_lot = "0.12"
memmap2 = "0.9"
zerocopy = { version = "0.8", features = ["derive"] }
bumpalo = { version = "3.14", features = ["collections"] }
smallvec = "1.11"
hashbrown = "0.14"
roaring = "0.10"
paste = "1.0"
phf = { version = "0.11", features = ["macros"] }
crc = "3.0"
rustyline = { version = "14.0", optional = true }
cap = "0.1"
sysinfo = "0.32"
[target.'cfg(unix)'.dependencies]
libc = "0.2"
[dev-dependencies]
tempfile = "3.10"
criterion = { version = "0.5", features = ["html_reports"] }
rusqlite = { version = "0.32", features = ["bundled"] }
serde = { version = "1.0", features = ["derive"] }
serde_json = "1.0"
ureq = { version = "2.9", features = ["json"] }
[[bin]]
name = "turdb"
path = "src/bin/turdb.rs"
required-features = ["cli"]
[profile.release]
opt-level = 3
lto = "fat"
codegen-units = 1
panic = "abort"
strip = true
[profile.dev]
opt-level = 1
debug = true
[profile.bench]
debug = true
[[bench]]
name = "insertion"
harness = false