forked from lakesoul-io/LakeSoul
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathCargo.toml
More file actions
142 lines (133 loc) · 3.55 KB
/
Copy pathCargo.toml
File metadata and controls
142 lines (133 loc) · 3.55 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
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
# SPDX-FileCopyrightText: 2023 LakeSoul Contributors
#
# SPDX-License-Identifier: Apache-2.0
[workspace]
members = [
"rust/lakesoul-build-info",
"rust/lakesoul-metadata-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",
"rust/lakesoul-common",
"rust/lakesoul-vector",
"python",
"rust/postgres-lakesoul",
]
resolver = "3"
[workspace.package]
authors = ["LakeSoul Contributors"]
edition = "2024"
homepage = "https://github.com/lakesoul-io/LakeSoul"
license = "Apache-2.0"
readme = "README.md"
version = "4.0.0"
[profile.bench]
debug = true
strip = false
[profile.profiling]
inherits = "release"
debug = true
opt-level = 2
[profile.test-fast]
inherits = "test"
# Use a slightly better optimization level for ci-tests
opt-level = 1
[workspace.dependencies]
# datafusion
datafusion = { version = "54" }
datafusion-common = { version = "54" }
datafusion-common-runtime = { version = "54" }
datafusion-session = { version = "54" }
datafusion-catalog-listing = { version = "54" }
datafusion-expr = { version = "54" }
datafusion-physical-expr = { version = "54" }
datafusion-physical-plan = { version = "54" }
datafusion-execution = { version = "54" }
datafusion-datasource = { version = "54" }
datafusion-datasource-parquet = { version = "54" }
datafusion-substrait = { version = "54" }
datafusion-python = { version = "54" }
# arrow
arrow = { version = "58", features = ["prettyprint"] }
arrow-schema = { version = "58", features = ["serde"] }
arrow-array = { version = "58", features = ["chrono-tz", "ffi"] }
arrow-buffer = { version = "58" }
arrow-cast = { version = "58" }
arrow-arith = { version = "58" }
arrow-ipc = { version = "58" }
arrow-flight = { version = "58", features = ["flight-sql-experimental"] }
arrow-pyarrow = { version = "58" }
parquet = { version = "58", default-features = true, features = [
"async",
"encryption",
] }
object_store = { version = "0.13", features = ["aws", "http"] }
# vortex
vortex = { version = "0.83" }
vortex-datafusion = { version = "0.83" }
# 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"
metrics = "0.24"
# cache
cached = { version = "0.54.0", features = ["async_tokio_rt_multi_thread"] }
# cli
clap = { version = "4.4", features = ["derive"] }
atomic_refcell = "0.1.8"
bytes = "1"
chrono = { version = "0.4", features = ["clock", "unstable-locales"] }
dashmap = { version = "6.1" }
hex = "0.4"
jsonwebtoken = { version = "9", default-features = false }
url = "2"
half = "^2.1"
uuid = { version = "1", features = ["v4", "fast-rng", "macro-diagnostics"] }
derivative = "2.2.0"
regex = "1.11"
itertools = "0.14"
lazy_static = "1.4.0"
log = "0.4.27"
# 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 = { version = "0.2", features = ["trace"] }
tempfile = "3.3.0"
# error handling
thiserror = "1.0"
anyhow = "1"
rootcause = "0.13"
reqwest = "0.13"
# sync
parking_lot = "0.12"
[workspace.lints.clippy]
[workspace.lints.rust]
deprecated = "allow"