-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathCargo.toml
More file actions
42 lines (35 loc) · 837 Bytes
/
Cargo.toml
File metadata and controls
42 lines (35 loc) · 837 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
[package]
name = "sql-lighter"
version = "0.1.0"
edition = "2021"
authors = ["Atomic Increment"]
license = "MIT OR Apache-2.0"
description = "A high-performance, pure Rust implementation of SQLite"
repository = "https://github.com/atomicincrement/sql-lighter"
[dependencies]
# Async runtime
tokio = { version = "1.35", features = ["full"] }
# Parsing and serialization
nom = "7.1"
serde = { version = "1.0", features = ["derive"] }
serde_json = "1.0"
# Logging and diagnostics
tracing = "0.1"
tracing-subscriber = "0.3"
# Error handling
thiserror = "1.0"
# Utilities
bytes = "1.5"
bitflags = "2.4"
memmap2 = "0.9"
regex = "1.10"
[dev-dependencies]
criterion = "0.5"
rand = "0.8"
proptest = "1.4"
tempfile = "3.8"
rusqlite = { version = "0.30", features = ["bundled"] }
[profile.release]
opt-level = 3
lto = true
codegen-units = 1