-
Notifications
You must be signed in to change notification settings - Fork 5
Expand file tree
/
Copy pathCargo.toml
More file actions
83 lines (68 loc) · 1.95 KB
/
Cargo.toml
File metadata and controls
83 lines (68 loc) · 1.95 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
80
81
82
83
[package]
name = "pgsqlite"
version = "0.0.20"
edition = "2024"
[features]
default = []
use_db_executor = []
unified_processor = []
[dependencies]
# Async runtime
tokio = { version = "1.46", features = ["full"] }
tokio-util = { version = "0.7.15", features = ["codec"] }
# PostgreSQL protocol
bytes = "1.9.0"
postgres-protocol = "0.6.8"
# SQLite
rusqlite = { version = "0.36.0", features = ["bundled", "uuid", "serde_json", "functions", "collation", "vtab", "column_decltype"] }
# SQL parsing
sqlparser = { version = "0.57.0", features = ["serde"] }
# Types
uuid = { version = "1.11.0", features = ["v4", "serde"] }
serde = { version = "1.0.217", features = ["derive"] }
serde_json = "1.0.134"
chrono = "0.4.39"
rust_decimal = { version = "1.35.0", features = ["serde", "db-postgres"] }
once_cell = "1.20.0"
# PostgreSQL client (for testing)
tokio-postgres = { version = "0.7.12", features = ["with-chrono-0_4"] }
env_logger = "0.11.5"
# Utilities
thiserror = "2.0.9"
anyhow = "1.0.98"
tracing = "0.1"
tracing-subscriber = { version = "0.3", features = ["env-filter"] }
async-trait = "0.1"
rand = "0.9"
futures = "0.3"
hex = "0.4"
regex = "1.11.1"
byteorder = "1.5"
parking_lot = "0.12"
memchr = "2.7.5"
itoa = "1.0"
bitflags = "2.6.0"
lru = "0.16.0"
# Memory mapping for zero-copy operations
memmap2 = "0.9"
tempfile = "3.14.0"
# Configuration
config = "0.15"
clap = { version = "4.5.25", features = ["derive", "env"] }
lazy_static = "1.5"
# Cryptography for migration checksums
sha2 = "0.10"
# Metrics
prometheus = "0.14"
# TLS/SSL support - using ring backend for cross-compilation compatibility
tokio-rustls = { version = "0.26.0", default-features = false, features = ["logging", "tls12", "ring"] }
rustls = { version = "0.23.19", default-features = false, features = ["logging", "tls12", "ring"] }
rustls-pemfile = "2.2"
rcgen = "0.13.0"
[dev-dependencies]
criterion = "0.6"
pretty_assertions = "1.4"
arbitrary = "1.3"
[[bench]]
name = "simple_query_bench"
harness = false