-
Notifications
You must be signed in to change notification settings - Fork 414
Expand file tree
/
Copy pathCargo.toml
More file actions
118 lines (109 loc) · 2.8 KB
/
Cargo.toml
File metadata and controls
118 lines (109 loc) · 2.8 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
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
# SPDX-FileCopyrightText: 2023 LakeSoul Contributors
#
# SPDX-License-Identifier: Apache-2.0
[workspace]
members = [
"rust/proto",
"rust/lakesoul-metadata",
"rust/lakesoul-metadata-c",
"rust/lakesoul-io",
"rust/lakesoul-io-c",
"rust/lakesoul-datafusion",
"rust/lakesoul-flight",
"rust/lakesoul-s3-proxy",
"rust/lakesoul-console",
"python",
]
resolver = "3"
[workspace.package]
authors = ["LakeSoul Contributors"]
edition = "2024"
homepage = "https://github.com/lakesoul-io/LakeSoul"
license = "Apache-2.0"
readme = "README.md"
version = "0.1.0"
[profile.release]
#lto = true
[workspace.dependencies]
# datafusion
datafusion = { version = "51" }
datafusion-common = { version = "51" }
datafusion-common-runtime = { version = "51" }
datafusion-session = { version = "51" }
datafusion-catalog-listing = { version = "51" }
datafusion-expr = { version = "51" }
datafusion-physical-expr = { version = "51" }
datafusion-physical-plan = { version = "51" }
datafusion-execution = { version = "51" }
datafusion-datasource = { version = "51" }
datafusion-datasource-parquet = { version = "51" }
datafusion-substrait = { version = "51" }
datafusion-python = { version = "51" }
# arrow
arrow = { version = "57" }
arrow-schema = { version = "57" }
arrow-array = { version = "57" }
arrow-buffer = { version = "57" }
arrow-cast = { version = "57" }
arrow-arith = { version = "57" }
arrow-ipc = { version = "57" }
arrow-flight = { version = "57", features = ["flight-sql-experimental"] }
arrow-pyarrow = { version = "57" }
parquet = { version = "57" }
object_store = { version = "0.12", features = ["aws", "http"] }
# async
futures = "0.3"
async-trait = "0.1"
# async runtime
tokio = { version = "1", features = ["full"] }
tokio-util = { version = "0.7", features = ["io", "compat"] }
tokio-stream = "0.1.9"
# web
tower = "0.4.13"
tonic = "0.14"
tonic-build = "0.14"
http = "1.2.0"
metrics = "0.21"
# cache
cached = { version = "0.54.0", features = ["async_tokio_rt_multi_thread"] }
# cli
clap = { version = "4.4", features = ["derive"] }
# utils
atomic_refcell = "0.1.8"
bytes = "1.4.0"
url = "2.2"
half = "^2.1"
uuid = { version = "1.4.0", features = ["v4", "fast-rng", "macro-diagnostics"] }
derivative = "2.2.0"
regex = "1.11"
itertools = "0.14"
# serialization
serde_json = "1.0"
serde = { version = "1.0", features = ["derive", "std", "rc"] }
# protobuf
prost = "0.14"
prost-build = "0.14"
# random
rand = "0.9"
rand_distr = "0.5"
rand_chacha = "0.9"
# logging
tracing = { version = "0.1.40", features = ["log"] }
tracing-subscriber = { version = "0.3.19", features = [
"default",
"chrono",
"env-filter",
] }
# for test
test-log = "0.2.17"
tempfile = "3.3.0"
# error handling
thiserror = "1.0"
anyhow = "1.0.79"
rootcause = "0.11"
[profile.bench]
debug = true
strip = false
[workspace.lints.clippy]
[workspace.lints.rust]
deprecated = "allow"