-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathCargo.toml
More file actions
61 lines (50 loc) · 1.07 KB
/
Cargo.toml
File metadata and controls
61 lines (50 loc) · 1.07 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 = "panda"
version = "0.1.0"
edition = "2024"
[lib]
name = "panda_database"
path = "src/lib.rs"
[[bin]]
name = "server"
path = "src/main.rs"
[[bin]]
name = "client"
path = "src/client.rs"
[dependencies]
# Core dependencies
serde = { version = "1.0", features = ["derive"] }
serde_json = "1.0"
chrono = { version = "0.4.38", default-features = false, features = [
"clock",
"std",
"serde",
] }
ctrlc = "3.0"
# Parquet and Arrow - using exact compatible versions
arrow = "55.2"
parquet = { version = "55.2", features = ["arrow"] }
# AWS S3 support
aws-config = { version = "1.1", features = ["behavior-version-latest"] }
aws-sdk-s3 = "1.15"
tokio = { version = "1.0", features = ["rt", "rt-multi-thread"] }
# Utilities
tempfile = "3.0"
thiserror = "1.0"
anyhow = "1.0"
[dev-dependencies]
# Testing utilities
tokio-test = "0.4"
tempfile = "3.0"
[features]
local-only = []
[profile.release]
# Optimizations for production use
lto = true
codegen-units = 1
panic = "abort"
strip = true
[profile.dev]
# Faster compilation during development
debug = true
opt-level = 0