From a1bc39aeab013a8a268e8e359c1950ce5a38df5b Mon Sep 17 00:00:00 2001 From: yew1eb Date: Wed, 11 Feb 2026 18:56:38 +0800 Subject: [PATCH 1/5] [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 a59cd1d5c..7b405f4be 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 55aaf8028..0d788a25f 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 88ca18d7f..0599bff0d 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 08199837d076bb919179327d9113b1ad9e6ebaf2 Mon Sep 17 00:00:00 2001 From: yew1eb Date: Thu, 19 Feb 2026 11:43:06 +0800 Subject: [PATCH 2/5] up --- Cargo.lock | 16 ++++++++-------- Cargo.toml | 2 +- 2 files changed, 9 insertions(+), 9 deletions(-) diff --git a/Cargo.lock b/Cargo.lock index 1ac2b5006..74e9ab0a7 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 7b405f4be..3938c282f 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 e5c74c79808f0c3b2bc077b345377e91eda4a44b Mon Sep 17 00:00:00 2001 From: yew1eb Date: Thu, 26 Feb 2026 01:04:46 +0800 Subject: [PATCH 3/5] up --- Cargo.lock | 16 ++++++++-------- Cargo.toml | 2 +- 2 files changed, 9 insertions(+), 9 deletions(-) diff --git a/Cargo.lock b/Cargo.lock index 74e9ab0a7..5ee1fafbf 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 3938c282f..4859a2c7f 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" From 0717c718416ace3f4eade111e7e81ab5c8b96ffc Mon Sep 17 00:00:00 2001 From: yew1eb Date: Sun, 1 Mar 2026 16:35:51 +0800 Subject: [PATCH 4/5] empty commit From 9b3a1bf878a24918aba2c4ae04c55a0e45fe2514 Mon Sep 17 00:00:00 2001 From: yew1eb Date: Fri, 6 Mar 2026 13:37:00 +0800 Subject: [PATCH 5/5] empty commit