From 33252a6bb5e5cb6e259843e7edf7378914cbed36 Mon Sep 17 00:00:00 2001 From: yew1eb Date: Wed, 11 Feb 2026 18:56:38 +0800 Subject: [PATCH 1/3] [AURON #2003] Extract common package configs to workspace Cargo.toml --- Cargo.toml | 5 +++++ native-engine/auron-jni-bridge/Cargo.toml | 6 +++--- native-engine/auron-memmgr/Cargo.toml | 7 ++++--- native-engine/auron-planner/Cargo.toml | 7 ++++--- native-engine/auron/Cargo.toml | 6 +++--- native-engine/datafusion-ext-commons/Cargo.toml | 6 +++--- native-engine/datafusion-ext-exprs/Cargo.toml | 6 +++--- native-engine/datafusion-ext-functions/Cargo.toml | 6 +++--- native-engine/datafusion-ext-plans/Cargo.toml | 6 +++--- 9 files changed, 31 insertions(+), 24 deletions(-) diff --git a/Cargo.toml b/Cargo.toml index 126597140..a0e030f3b 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -27,6 +27,11 @@ members = [ "native-engine/auron-memmgr", ] +[workspace.package] +version = "0.1.0" +license = "Apache-2.0" +edition = "2024" + [workspace.lints.rust] # Pending processing (temporarily allow) unused_variables = "allow" diff --git a/native-engine/auron-jni-bridge/Cargo.toml b/native-engine/auron-jni-bridge/Cargo.toml index eccd41ecd..e9e7226a6 100644 --- a/native-engine/auron-jni-bridge/Cargo.toml +++ b/native-engine/auron-jni-bridge/Cargo.toml @@ -17,9 +17,9 @@ [package] name = "auron-jni-bridge" -version = "0.1.0" -license = "Apache-2.0" -edition = "2024" +version = { workspace = true } +license = { workspace = true } +edition = { workspace = true } resolver = "1" [lints] workspace = true diff --git a/native-engine/auron-memmgr/Cargo.toml b/native-engine/auron-memmgr/Cargo.toml index fe0b84eb7..ed701ab88 100644 --- a/native-engine/auron-memmgr/Cargo.toml +++ b/native-engine/auron-memmgr/Cargo.toml @@ -17,9 +17,10 @@ [package] name = "auron-memmgr" -version = "0.1.0" -license = "Apache-2.0" -edition = "2024" +version = { workspace = true } +license = { workspace = true } +edition = { workspace = true } +resolver = "1" [lints] workspace = true diff --git a/native-engine/auron-planner/Cargo.toml b/native-engine/auron-planner/Cargo.toml index e39553d45..5a98c9fdb 100644 --- a/native-engine/auron-planner/Cargo.toml +++ b/native-engine/auron-planner/Cargo.toml @@ -17,9 +17,10 @@ [package] name = "auron-planner" -version = "0.1.0" -license = "Apache-2.0" -edition = "2024" +version = { workspace = true } +license = { workspace = true } +edition = { workspace = true } +resolver = "1" [lints] workspace = true diff --git a/native-engine/auron/Cargo.toml b/native-engine/auron/Cargo.toml index f0eab0e5a..8d38d2954 100644 --- a/native-engine/auron/Cargo.toml +++ b/native-engine/auron/Cargo.toml @@ -17,9 +17,9 @@ [package] name = "auron" -version = "0.1.0" -license = "Apache-2.0" -edition = "2024" +version = { workspace = true } +license = { workspace = true } +edition = { workspace = true } resolver = "1" [lints] workspace = true diff --git a/native-engine/datafusion-ext-commons/Cargo.toml b/native-engine/datafusion-ext-commons/Cargo.toml index c5d7ed2d0..7bd229db9 100644 --- a/native-engine/datafusion-ext-commons/Cargo.toml +++ b/native-engine/datafusion-ext-commons/Cargo.toml @@ -17,9 +17,9 @@ [package] name = "datafusion-ext-commons" -version = "0.1.0" -license = "Apache-2.0" -edition = "2024" +version = { workspace = true } +license = { workspace = true } +edition = { workspace = true } resolver = "1" [lints] workspace = true diff --git a/native-engine/datafusion-ext-exprs/Cargo.toml b/native-engine/datafusion-ext-exprs/Cargo.toml index e59a71825..7240b2ece 100644 --- a/native-engine/datafusion-ext-exprs/Cargo.toml +++ b/native-engine/datafusion-ext-exprs/Cargo.toml @@ -17,9 +17,9 @@ [package] name = "datafusion-ext-exprs" -version = "0.1.0" -license = "Apache-2.0" -edition = "2024" +version = { workspace = true } +license = { workspace = true } +edition = { workspace = true } resolver = "1" [lints] workspace = true diff --git a/native-engine/datafusion-ext-functions/Cargo.toml b/native-engine/datafusion-ext-functions/Cargo.toml index 39bf352d7..ffaac79ec 100644 --- a/native-engine/datafusion-ext-functions/Cargo.toml +++ b/native-engine/datafusion-ext-functions/Cargo.toml @@ -17,9 +17,9 @@ [package] name = "datafusion-ext-functions" -version = "0.1.0" -license = "Apache-2.0" -edition = "2024" +version = { workspace = true } +license = { workspace = true } +edition = { workspace = true } resolver = "1" [lints] workspace = true diff --git a/native-engine/datafusion-ext-plans/Cargo.toml b/native-engine/datafusion-ext-plans/Cargo.toml index bdc556162..d47e81f39 100644 --- a/native-engine/datafusion-ext-plans/Cargo.toml +++ b/native-engine/datafusion-ext-plans/Cargo.toml @@ -17,9 +17,9 @@ [package] name = "datafusion-ext-plans" -version = "0.1.0" -license = "Apache-2.0" -edition = "2024" +version = { workspace = true } +license = { workspace = true } +edition = { workspace = true } resolver = "1" [lints] workspace = true From cb44ae1774122d49ff8ade4ab56be61a6a3ac050 Mon Sep 17 00:00:00 2001 From: yew1eb Date: Thu, 19 Feb 2026 11:43:06 +0800 Subject: [PATCH 2/3] up --- Cargo.lock | 16 ++++++++-------- Cargo.toml | 2 +- 2 files changed, 9 insertions(+), 9 deletions(-) diff --git a/Cargo.lock b/Cargo.lock index 334fc7e72..f19251198 100644 --- a/Cargo.lock +++ b/Cargo.lock @@ -344,7 +344,7 @@ checksum = "1505bd5d3d116872e7271a6d4e16d81d0c8570876c8de68093a09ac269d8aac0" [[package]] name = "auron" -version = "0.1.0" +version = "7.0.0-incubating" dependencies = [ "arrow", "auron-jni-bridge", @@ -373,7 +373,7 @@ dependencies = [ [[package]] name = "auron-jni-bridge" -version = "0.1.0" +version = "7.0.0-incubating" dependencies = [ "datafusion", "jni", @@ -384,7 +384,7 @@ dependencies = [ [[package]] name = "auron-memmgr" -version = "0.1.0" +version = "7.0.0-incubating" dependencies = [ "async-trait", "auron-jni-bridge", @@ -401,7 +401,7 @@ dependencies = [ [[package]] name = "auron-planner" -version = "0.1.0" +version = "7.0.0-incubating" dependencies = [ "arrow", "base64", @@ -1174,7 +1174,7 @@ dependencies = [ [[package]] name = "datafusion-ext-commons" -version = "0.1.0" +version = "7.0.0-incubating" dependencies = [ "arrow", "arrow-schema", @@ -1200,7 +1200,7 @@ dependencies = [ [[package]] name = "datafusion-ext-exprs" -version = "0.1.0" +version = "7.0.0-incubating" dependencies = [ "arrow", "auron-jni-bridge", @@ -1215,7 +1215,7 @@ dependencies = [ [[package]] name = "datafusion-ext-functions" -version = "0.1.0" +version = "7.0.0-incubating" dependencies = [ "arrow", "auron-jni-bridge", @@ -1233,7 +1233,7 @@ dependencies = [ [[package]] name = "datafusion-ext-plans" -version = "0.1.0" +version = "7.0.0-incubating" dependencies = [ "arrow", "arrow-schema", diff --git a/Cargo.toml b/Cargo.toml index a0e030f3b..b1e3d33fc 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -28,7 +28,7 @@ members = [ ] [workspace.package] -version = "0.1.0" +version = "7.0.0-incubating" license = "Apache-2.0" edition = "2024" From 68770dffa394a8c72d32596d698d37cee2ac7eff Mon Sep 17 00:00:00 2001 From: yew1eb Date: Thu, 26 Feb 2026 01:04:46 +0800 Subject: [PATCH 3/3] up --- Cargo.lock | 16 ++++++++-------- Cargo.toml | 2 +- 2 files changed, 9 insertions(+), 9 deletions(-) diff --git a/Cargo.lock b/Cargo.lock index f19251198..e44100134 100644 --- a/Cargo.lock +++ b/Cargo.lock @@ -344,7 +344,7 @@ checksum = "1505bd5d3d116872e7271a6d4e16d81d0c8570876c8de68093a09ac269d8aac0" [[package]] name = "auron" -version = "7.0.0-incubating" +version = "8.0.0" dependencies = [ "arrow", "auron-jni-bridge", @@ -373,7 +373,7 @@ dependencies = [ [[package]] name = "auron-jni-bridge" -version = "7.0.0-incubating" +version = "8.0.0" dependencies = [ "datafusion", "jni", @@ -384,7 +384,7 @@ dependencies = [ [[package]] name = "auron-memmgr" -version = "7.0.0-incubating" +version = "8.0.0" dependencies = [ "async-trait", "auron-jni-bridge", @@ -401,7 +401,7 @@ dependencies = [ [[package]] name = "auron-planner" -version = "7.0.0-incubating" +version = "8.0.0" dependencies = [ "arrow", "base64", @@ -1174,7 +1174,7 @@ dependencies = [ [[package]] name = "datafusion-ext-commons" -version = "7.0.0-incubating" +version = "8.0.0" dependencies = [ "arrow", "arrow-schema", @@ -1200,7 +1200,7 @@ dependencies = [ [[package]] name = "datafusion-ext-exprs" -version = "7.0.0-incubating" +version = "8.0.0" dependencies = [ "arrow", "auron-jni-bridge", @@ -1215,7 +1215,7 @@ dependencies = [ [[package]] name = "datafusion-ext-functions" -version = "7.0.0-incubating" +version = "8.0.0" dependencies = [ "arrow", "auron-jni-bridge", @@ -1233,7 +1233,7 @@ dependencies = [ [[package]] name = "datafusion-ext-plans" -version = "7.0.0-incubating" +version = "8.0.0" dependencies = [ "arrow", "arrow-schema", diff --git a/Cargo.toml b/Cargo.toml index b1e3d33fc..35d22dcf2 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -28,7 +28,7 @@ members = [ ] [workspace.package] -version = "7.0.0-incubating" +version = "8.0.0" license = "Apache-2.0" edition = "2024"