-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathCargo.toml
More file actions
73 lines (61 loc) · 1.91 KB
/
Cargo.toml
File metadata and controls
73 lines (61 loc) · 1.91 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
[workspace]
resolver = "2"
members = [
"crates/teckel-engine",
"crates/teckel-datafusion",
"crates/teckel-polars",
"crates/teckel-spark",
"crates/teckel-api",
"crates/teckel-server",
"crates/teckel-remote",
"crates/teckel-worker",
]
[workspace.package]
version = "0.1.0"
edition = "2021"
rust-version = "1.75"
license = "Apache-2.0"
repository = "https://github.com/eff3ct0/teckel-api"
authors = ["Rafael Fernandez <eff3ct0>"]
[workspace.dependencies]
# From teckel-rs (parser + model)
teckel-model = { path = "../teckel-rs/crates/teckel-model" }
teckel-parser = { path = "../teckel-rs/crates/teckel-parser" }
# DataFusion + Arrow
datafusion = "46"
arrow = { version = "55", features = ["prettyprint"] }
# Graph
petgraph = "0.6"
# Async
tokio = { version = "1.35", features = ["full"] }
async-trait = "0.1"
# HTTP client (for enrich transform)
reqwest = { version = "0.12", features = ["json"] }
# gRPC
tonic = "0.13"
tonic-web = "0.13"
prost = "0.13"
# Polars
polars = { version = "0.46", features = ["lazy", "csv", "parquet", "json", "dtype-struct", "dtype-array", "concat_str", "is_in", "strings", "temporal", "round_series", "abs", "rank", "unique_counts", "sql", "pivot"] }
# Error handling
thiserror = "2"
# Logging
tracing = "0.1"
# Web server
axum = "0.8"
tower-http = { version = "0.6", features = ["cors"] }
serde = { version = "1", features = ["derive"] }
serde_json = "1"
uuid = { version = "1", features = ["v4"] }
dashmap = "6"
tokio-util = "0.7"
tracing-subscriber = { version = "0.3", features = ["env-filter"] }
chrono = { version = "0.4", features = ["serde"] }
num_cpus = "1"
# Internal crates
teckel-engine = { path = "crates/teckel-engine" }
teckel-datafusion = { path = "crates/teckel-datafusion" }
teckel-api = { path = "crates/teckel-api" }
teckel-polars = { path = "crates/teckel-polars" }
teckel-spark = { path = "crates/teckel-spark" }
teckel-remote = { path = "crates/teckel-remote" }