Skip to content

Commit b3144e4

Browse files
committed
up
1 parent 27f5404 commit b3144e4

10 files changed

Lines changed: 35 additions & 27 deletions

File tree

Cargo.lock

Lines changed: 8 additions & 8 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

Cargo.toml

Lines changed: 12 additions & 9 deletions
Original file line numberDiff line numberDiff line change
@@ -29,7 +29,7 @@ members = [
2929
]
3030

3131
[workspace.package]
32-
version = "7.0.0-incubating"
32+
version = "8.0.0"
3333
license = "Apache-2.0"
3434
edition = "2024"
3535

@@ -162,35 +162,38 @@ base64 = "0.22.1"
162162
bigdecimal = "0.4.10"
163163
bitvec = "1.0.1"
164164
byteorder = "1.5.0"
165-
bytes = "1.11.0"
165+
bytes = "1.11.1"
166166
bytesize = "2.3.1"
167-
chrono = "0.4.43"
167+
chrono = "0.4.44"
168168
count-write = "0.1.0"
169169
foldhash = "0.2.0"
170170
futures = "0.3"
171-
futures-util = "0.3.31"
171+
futures-util = "0.3.32"
172172
hashbrown = "0.14.5"
173173
itertools = "0.14.0"
174174
jni = "0.20.0"
175175
log = "0.4.29"
176-
lz4_flex = "0.12.0"
176+
lz4_flex = "0.13.0"
177177
num = "0.4.2"
178178
object_store = "0.12.4"
179-
once_cell = "1.21.3"
179+
once_cell = "1.21.4"
180180
panic-message = "0.3.0"
181181
parking_lot = "0.12.5"
182182
paste = "1.0.15"
183183
procfs = "0.18.0"
184184
prost = "0.14.3"
185+
prost-types = "0.14.3"
186+
prost-reflect = "0.16.3"
185187
rand = "0.9.2"
186188
smallvec = "2.0.0-alpha.11"
187-
sonic-rs = "0.5.6"
189+
sonic-rs = "0.5.7"
188190
tempfile = "3"
189-
tokio = "1.49.0"
191+
tokio = "1.51.0"
190192
tonic-build = "0.13.1"
191193
transpose = "0.2.3"
192194
unchecked-index = "0.2.2"
193195
zstd = "0.13.3"
196+
rdkafka = { version = "0.36.0", features = ["tokio"] }
194197

195198
[patch.crates-io]
196199
# datafusion: branch=v49.0.0-blaze
@@ -203,7 +206,7 @@ datafusion-execution = { git = "https://github.com/auron-project/datafusion.git"
203206
datafusion-optimizer = { git = "https://github.com/auron-project/datafusion.git", rev = "9034aeffb"}
204207
datafusion-physical-expr = { git = "https://github.com/auron-project/datafusion.git", rev = "9034aeffb"}
205208
datafusion-spark = { git = "https://github.com/auron-project/datafusion.git", rev = "9034aeffb"}
206-
orc-rust = { git = "https://github.com/auron-project/datafusion-orc.git", rev = "17f7012"}
209+
orc-rust = { git = "https://github.com/auron-project/datafusion-orc.git", rev = "9beb12c"}
207210

208211
# arrow: branch=v55.2.0-blaze
209212
arrow = { git = "https://github.com/auron-project/arrow-rs.git", rev = "5de02520c"}

native-engine/auron-jni-bridge/Cargo.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -20,7 +20,7 @@ name = "auron-jni-bridge"
2020
version = { workspace = true }
2121
license = { workspace = true }
2222
edition = { workspace = true }
23-
resolver = "1"
23+
2424
[lints]
2525
workspace = true
2626

native-engine/auron-memmgr/Cargo.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -20,7 +20,7 @@ name = "auron-memmgr"
2020
version = { workspace = true }
2121
license = { workspace = true }
2222
edition = { workspace = true }
23-
resolver = "1"
23+
2424
[lints]
2525
workspace = true
2626

native-engine/auron-planner/Cargo.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -20,7 +20,7 @@ name = "auron-planner"
2020
version = { workspace = true }
2121
license = { workspace = true }
2222
edition = { workspace = true }
23-
resolver = "1"
23+
2424
[lints]
2525
workspace = true
2626

native-engine/auron/Cargo.toml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -20,7 +20,7 @@ name = "auron"
2020
version = { workspace = true }
2121
license = { workspace = true }
2222
edition = { workspace = true }
23-
resolver = "1"
23+
2424
[lints]
2525
workspace = true
2626

@@ -68,7 +68,7 @@ optional = true
6868
features = ["disable_initial_exec_tls"]
6969

7070
[dependencies.jemalloc_pprof]
71-
version = "0.8.2"
71+
version = "0.8.0"
7272
features = ["symbolize"]
7373
optional = true
7474

native-engine/datafusion-ext-commons/Cargo.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -20,7 +20,7 @@ name = "datafusion-ext-commons"
2020
version = { workspace = true }
2121
license = { workspace = true }
2222
edition = { workspace = true }
23-
resolver = "1"
23+
2424
[lints]
2525
workspace = true
2626

native-engine/datafusion-ext-exprs/Cargo.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -20,7 +20,7 @@ name = "datafusion-ext-exprs"
2020
version = { workspace = true }
2121
license = { workspace = true }
2222
edition = { workspace = true }
23-
resolver = "1"
23+
2424
[lints]
2525
workspace = true
2626

native-engine/datafusion-ext-functions/Cargo.toml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -20,7 +20,7 @@ name = "datafusion-ext-functions"
2020
version = { workspace = true }
2121
license = { workspace = true }
2222
edition = { workspace = true }
23-
resolver = "1"
23+
2424
[lints]
2525
workspace = true
2626

@@ -36,5 +36,5 @@ num = { workspace = true }
3636
paste = { workspace = true }
3737
serde_json = { workspace = true }
3838
sonic-rs = { workspace = true }
39-
chrono = "0.4.43"
39+
chrono = "0.4.44"
4040
chrono-tz = "0.10.4"

native-engine/datafusion-ext-plans/Cargo.toml

Lines changed: 6 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -20,7 +20,7 @@ name = "datafusion-ext-plans"
2020
version = { workspace = true }
2121
license = { workspace = true }
2222
edition = { workspace = true }
23-
resolver = "1"
23+
2424
[lints]
2525
workspace = true
2626

@@ -63,6 +63,11 @@ paste = { workspace = true }
6363
smallvec = { workspace = true }
6464
tokio = { workspace = true }
6565
unchecked-index = { workspace = true }
66+
prost = { workspace = true }
67+
prost-types = { workspace = true }
68+
prost-reflect = { workspace = true }
69+
rdkafka = { workspace = true }
70+
sonic-rs = { workspace = true }
6671

6772
[target.'cfg(target_os = "linux")'.dependencies]
6873
procfs = { workspace = true }

0 commit comments

Comments
 (0)