-
Notifications
You must be signed in to change notification settings - Fork 11
Expand file tree
/
Copy pathCargo.toml
More file actions
94 lines (87 loc) · 2.71 KB
/
Copy pathCargo.toml
File metadata and controls
94 lines (87 loc) · 2.71 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
84
85
86
87
88
89
90
91
92
93
94
[workspace.package]
version = "0.1.0"
edition = "2024"
description = "High performance query engine for both offline compute and online serving"
authors = ["btnokami"]
repository = "https://github.com/BtXin/skardi"
homepage = "hhttps://github.com/BtXin/skardi"
license = "Apache-2.0"
[workspace]
members = [ "crates/cli",
"crates/engine",
"crates/sources",
"crates/model",
"crates/pipeline",
"crates/server"]
resolver = "2"
[workspace.dependencies]
anyhow = "1.0.98"
arrow = { version = "57.0.1", features = [
"prettyprint",
"chrono-tz",
] }
arrow-json = { version = "57.0.1" }
async-trait = "0.1.88"
axum = "0.7"
ctor = "0.4.1"
datafusion = { version = "52.1.0", default-features = false, features = [
"nested_expressions",
"datetime_expressions",
"regex_expressions",
"string_expressions",
"unicode_expressions",
"compression",
"parquet",
"recursive_protection",
"sql",
] }
datafusion-common = { version = "52.1.0" }
datafusion-federation = "0.5.1"
datafusion-table-providers = { version = "0.10.0", default-features = false, features = ["postgres", "mysql"] }
tokio-rusqlite = "0.7"
env_logger = "0.11"
futures = "0.3"
iceberg = "0.9.0"
iceberg-datafusion = "0.9.0"
iceberg-storage-opendal = "0.9.0"
insta = { version = "1.41.1", features = ["glob", "filters"] }
lance = { git = "https://github.com/lance-format/lance", tag = "v4.0.0-rc.1", default-features = false }
lance-linalg = { git = "https://github.com/lance-format/lance", tag = "v4.0.0-rc.1" }
log = "0.4.27"
object_store = { version = "0.12.4", default-features = false, features = ["aws", "gcp", "azure", "http"] }
parking_lot = "0.12"
parquet = { version = "57.0.1", default-features = false, features = [
"arrow",
"async",
"object_store",
] }
regex = "1.8"
rstest = "0.25.0"
serde = { version = "1.0", features = ["derive"] }
serde_json = "1.0"
serde_yaml = "0.9"
skardi-engine = { path = "crates/engine" }
sqlparser = "0.55.0"
sqlx = { version = "0.8", default-features = false, features = ["runtime-tokio", "tls-rustls", "postgres"] }
tempfile = "3.23.0"
tokio = { version = "1.44.2", features = ["macros", "rt", "sync"] }
tower = "0.4"
tower-http = "0.5"
tracing = "0.1"
url = "2.5.4"
uuid = { version = "1.4", features = ["v4", "serde"] }
[profile.release]
lto = "thin"
codegen-units = 1
strip = true
[profile.release-cli]
inherits = "release"
lto = true
panic = "abort"
[workspace.lints.clippy]
# Detects large stack-allocated futures that may cause stack overflow crashes (see threshold in clippy.toml)
large_futures = "warn"
used_underscore_binding = "warn"
[workspace.lints.rust]
unexpected_cfgs = { level = "warn", check-cfg = ["cfg(tarpaulin)"] }
unused_qualifications = "deny"