-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathCargo.toml
More file actions
43 lines (37 loc) · 937 Bytes
/
Copy pathCargo.toml
File metadata and controls
43 lines (37 loc) · 937 Bytes
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
[package]
name = "daoql-edu"
version = "0.1.2"
edition = "2021"
license = "Apache-2.0"
authors = ["DaoQL Edu Team"]
description = "DaoQL 教学版 — 多模态数据引擎教育项目"
repository = "https://github.com/zhanbolee/DaoQL-Edu"
keywords = ["database", "graph", "vector", "columnar", "educational"]
categories = ["database-implementations", "science"]
rust-version = "1.78"
[dependencies]
uuid = { version = "1", features = ["v7", "serde"] }
serde = { version = "1", features = ["derive"] }
serde_json = "1"
postcard = { version = "1", features = ["alloc"] }
redb = "2"
toml = "0.8"
chrono = "0.4"
memmap2 = "0.9"
crc32fast = "1.3"
lz4_flex = "0.11"
wide = "0.7"
rayon = "1"
thiserror = "1"
rand = "0.8"
[dev-dependencies]
criterion = { version = "0.5", features = ["html_reports"] }
[[bench]]
name = "benchmark"
harness = false
[profile.release]
opt-level = 3
lto = "thin"
codegen-units = 1
[profile.dev]
opt-level = 1