-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathCargo.toml
More file actions
38 lines (36 loc) · 1.02 KB
/
Copy pathCargo.toml
File metadata and controls
38 lines (36 loc) · 1.02 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
[package]
name = "usagedb"
version = "0.4.0"
edition = "2024"
license = "Apache-2.0"
description = "Embedded append-only usage database for AI billing workloads"
repository = "https://github.com/pbudzik/usagedb"
[dependencies]
anyhow = "1.0.102"
axum = "0.8.9"
bincode = "1.3.3"
blake3 = "1.5"
clap = { version = "4", features = ["derive"] }
byteorder = "1.5.0"
bytes = "1.11.1"
chrono = { version = "0.4.44", features = ["serde"] }
fs4 = "0.13"
hyper = "1.9.0"
lz4_flex = "0.13.1"
memmap2 = "0.9.10"
serde = { version = "1.0.228", features = ["derive"] }
serde_json = "1.0.149"
sqlparser = "0.62.0"
thiserror = "2.0.18"
tokio = { version = "1.52.3", features = ["full"] }
tower = "0.5.3"
tracing = "0.1.44"
tracing-subscriber = "0.3.23"
uuid = { version = "1.23.1", features = ["v4"] }
zstd = "0.13.3"
arrow = { version = "55", default-features = false, features = ["ipc"] }
parquet = { version = "55", default-features = false, features = ["arrow", "zstd"] }
[dev-dependencies]
proptest = "1.11.0"
tempfile = "3.27.0"
http-body-util = "0.1"