-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathCargo.toml
More file actions
79 lines (64 loc) · 1.37 KB
/
Copy pathCargo.toml
File metadata and controls
79 lines (64 loc) · 1.37 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
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
[package]
name = "rtsql"
version = "0.1.0"
edition = "2021"
description = "Async coroutine-driven embedded relational database"
license = "MIT OR Apache-2.0"
[dependencies]
tokio = { version = "1", features = ["rt-multi-thread", "macros", "sync", "time", "net", "fs", "io-util"] }
async-trait = "0.1"
clap = { version = "4", features = ["derive"] }
thiserror = "1.0"
anyhow = "1.0"
futures = "0.3"
sqlparser = "0.44"
tokio-util = { version = "0.7", features = ["rt"] }
serde = { version = "1.0", features = ["derive"] }
serde_json = "1.0"
rand = "0.8"
lru = "0.12"
crc32fast = "1.4"
dashmap = "6"
[dev-dependencies]
criterion = { version = "0.5", features = ["html_reports", "async_tokio"] }
rusqlite = "0.31"
tempfile = "3.0"
which = "6.0"
[[bench]]
name = "micro_bench"
harness = false
[[bench]]
name = "concurrent_bench"
harness = false
[[bench]]
name = "cache_bench"
harness = false
[[bench]]
name = "scale_bench"
harness = false
[[bench]]
name = "sqlite_compare"
harness = false
[[bench]]
name = "data_scan_bench"
harness = false
[[bench]]
name = "wal_group_commit_bench"
harness = false
[[bench]]
name = "tx_id_bench"
harness = false
[[bench]]
name = "visibility_bench"
harness = false
[[bench]]
name = "buffer_pool_concurrency_bench"
harness = false
[[bench]]
name = "pipeline_stages_bench"
harness = false
[profile.release]
opt-level = 3
lto = true
[profile.dev]
opt-level = 0