This is an automated email from the ASF dual-hosted git repository.

csy pushed a commit to branch master
in repository https://gitbox.apache.org/repos/asf/auron.git


The following commit(s) were added to refs/heads/master by this push:
     new 4b41feda [AURON #1999] Add Apache-2.0 license declaration to all 
native-engine Cargo.toml files. (#2000)
4b41feda is described below

commit 4b41fedaa9f04f0843cff09f79894223ceba51aa
Author: slfan1989 <[email protected]>
AuthorDate: Wed Feb 11 18:33:31 2026 +0800

    [AURON #1999] Add Apache-2.0 license declaration to all native-engine 
Cargo.toml files. (#2000)
    
    ### Which issue does this PR close?
    
    Closes #1999
    
    ### Rationale for this change
    
    Currently, the native-engine subproject Cargo.toml files lack explicit
    license declarations. This PR adds `license = "Apache-2.0"` to all
    native-engine packages to:
    - Improve project compliance with open-source licensing best practices
    - Maintain consistency across all workspace members
    - Make license information machine-readable for dependency scanners and
    tools
    
    ### What changes are included in this PR?
    
    Added `license = "Apache-2.0"` field to the `[package]` section of the
    following Cargo.toml files
    
    ### Are there any user-facing changes?
    
    No.
    
    ### How was this patch tested?
    
    - Verified all Cargo.toml files are syntactically valid with `cargo
    check`
    
    Signed-off-by: slfan1989 <[email protected]>
---
 native-engine/auron-jni-bridge/Cargo.toml         | 2 +-
 native-engine/auron-memmgr/Cargo.toml             | 2 +-
 native-engine/auron-planner/Cargo.toml            | 2 +-
 native-engine/auron/Cargo.toml                    | 2 +-
 native-engine/datafusion-ext-commons/Cargo.toml   | 2 +-
 native-engine/datafusion-ext-exprs/Cargo.toml     | 2 +-
 native-engine/datafusion-ext-functions/Cargo.toml | 2 +-
 native-engine/datafusion-ext-plans/Cargo.toml     | 2 +-
 8 files changed, 8 insertions(+), 8 deletions(-)

diff --git a/native-engine/auron-jni-bridge/Cargo.toml 
b/native-engine/auron-jni-bridge/Cargo.toml
index fbbbf4a2..eccd41ec 100644
--- a/native-engine/auron-jni-bridge/Cargo.toml
+++ b/native-engine/auron-jni-bridge/Cargo.toml
@@ -18,9 +18,9 @@
 [package]
 name = "auron-jni-bridge"
 version = "0.1.0"
+license = "Apache-2.0"
 edition = "2024"
 resolver = "1"
-
 [lints]
 workspace = true
 
diff --git a/native-engine/auron-memmgr/Cargo.toml 
b/native-engine/auron-memmgr/Cargo.toml
index 8b09480e..fe0b84eb 100644
--- a/native-engine/auron-memmgr/Cargo.toml
+++ b/native-engine/auron-memmgr/Cargo.toml
@@ -18,8 +18,8 @@
 [package]
 name = "auron-memmgr"
 version = "0.1.0"
+license = "Apache-2.0"
 edition = "2024"
-
 [lints]
 workspace = true
 
diff --git a/native-engine/auron-planner/Cargo.toml 
b/native-engine/auron-planner/Cargo.toml
index a052f429..e39553d4 100644
--- a/native-engine/auron-planner/Cargo.toml
+++ b/native-engine/auron-planner/Cargo.toml
@@ -18,8 +18,8 @@
 [package]
 name = "auron-planner"
 version = "0.1.0"
+license = "Apache-2.0"
 edition = "2024"
-
 [lints]
 workspace = true
 
diff --git a/native-engine/auron/Cargo.toml b/native-engine/auron/Cargo.toml
index 44fdf116..f0eab0e5 100644
--- a/native-engine/auron/Cargo.toml
+++ b/native-engine/auron/Cargo.toml
@@ -18,9 +18,9 @@
 [package]
 name = "auron"
 version = "0.1.0"
+license = "Apache-2.0"
 edition = "2024"
 resolver = "1"
-
 [lints]
 workspace = true
 
diff --git a/native-engine/datafusion-ext-commons/Cargo.toml 
b/native-engine/datafusion-ext-commons/Cargo.toml
index 3bf788da..c5d7ed2d 100644
--- a/native-engine/datafusion-ext-commons/Cargo.toml
+++ b/native-engine/datafusion-ext-commons/Cargo.toml
@@ -18,9 +18,9 @@
 [package]
 name = "datafusion-ext-commons"
 version = "0.1.0"
+license = "Apache-2.0"
 edition = "2024"
 resolver = "1"
-
 [lints]
 workspace = true
 
diff --git a/native-engine/datafusion-ext-exprs/Cargo.toml 
b/native-engine/datafusion-ext-exprs/Cargo.toml
index 961c54b7..e59a7182 100644
--- a/native-engine/datafusion-ext-exprs/Cargo.toml
+++ b/native-engine/datafusion-ext-exprs/Cargo.toml
@@ -18,9 +18,9 @@
 [package]
 name = "datafusion-ext-exprs"
 version = "0.1.0"
+license = "Apache-2.0"
 edition = "2024"
 resolver = "1"
-
 [lints]
 workspace = true
 
diff --git a/native-engine/datafusion-ext-functions/Cargo.toml 
b/native-engine/datafusion-ext-functions/Cargo.toml
index 4ac5e440..39bf352d 100644
--- a/native-engine/datafusion-ext-functions/Cargo.toml
+++ b/native-engine/datafusion-ext-functions/Cargo.toml
@@ -18,9 +18,9 @@
 [package]
 name = "datafusion-ext-functions"
 version = "0.1.0"
+license = "Apache-2.0"
 edition = "2024"
 resolver = "1"
-
 [lints]
 workspace = true
 
diff --git a/native-engine/datafusion-ext-plans/Cargo.toml 
b/native-engine/datafusion-ext-plans/Cargo.toml
index d3f86eb6..bdc55616 100644
--- a/native-engine/datafusion-ext-plans/Cargo.toml
+++ b/native-engine/datafusion-ext-plans/Cargo.toml
@@ -18,9 +18,9 @@
 [package]
 name = "datafusion-ext-plans"
 version = "0.1.0"
+license = "Apache-2.0"
 edition = "2024"
 resolver = "1"
-
 [lints]
 workspace = true
 

Reply via email to