-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathCargo.toml
More file actions
45 lines (34 loc) · 1.07 KB
/
Copy pathCargo.toml
File metadata and controls
45 lines (34 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
[workspace]
members = ["crates/timeseries-table-format", "crates/timeseries-table-python"]
resolver = "3"
[workspace.package]
version = "0.7.0"
edition = "2024"
license = "MIT"
repository = "https://github.com/mag1cfrog/timeseries-table-format"
rust-version = "1.94.0"
[workspace.lints.rust]
missing_docs = "deny"
[workspace.lints.clippy]
unwrap_used = "deny"
expect_used = "deny"
panic = "deny"
[workspace.dependencies]
timeseries-table-format = { path = "crates/timeseries-table-format", version = "0.7.0", default-features = false }
arrow = "59.2.0"
arrow-array = "59.2.0"
arrow-ipc = "59.2.0"
arrow-select = "59.2.0"
arrow-csv = "59.2.0"
arrow-json = "59.2.0"
parquet = "59.2.0"
chrono = { version = "0.4.42", features = ["serde"] }
chrono-tz = "0.10.4"
datafusion = "55.0.0"
futures = "0.3.31"
futures-util = "0.3.31"
tokio = { version = "1.48.0" }
async-trait = "0.1.89"
snafu = { version = "0.9.2" }
tabled = { version = "0.21.0", default-features = false, features = ["std"] }
tracing = { version = "0.1.44", default-features = false, features = ["attributes", "log", "std"] }