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

chaokunyang pushed a commit to branch main
in repository https://gitbox.apache.org/repos/asf/fory.git


The following commit(s) were added to refs/heads/main by this push:
     new 83097b22e chore(rust): update cargo toml for publish (#2838)
83097b22e is described below

commit 83097b22e3446dc839921b9b46aae4f986c01b70
Author: Shawn Yang <[email protected]>
AuthorDate: Mon Oct 27 22:57:28 2025 +0800

    chore(rust): update cargo toml for publish (#2838)
    
    <!--
    **Thanks for contributing to Apache Fory™.**
    
    **If this is your first time opening a PR on fory, you can refer to
    
[CONTRIBUTING.md](https://github.com/apache/fory/blob/main/CONTRIBUTING.md).**
    
    Contribution Checklist
    
    - The **Apache Fory™** community has requirements on the naming of pr
    titles. You can also find instructions in
    [CONTRIBUTING.md](https://github.com/apache/fory/blob/main/CONTRIBUTING.md).
    
    - Apache Fory™ has a strong focus on performance. If the PR you submit
    will have an impact on performance, please benchmark it first and
    provide the benchmark result here.
    -->
    
    ## Why?
    
    <!-- Describe the purpose of this PR. -->
    
    ## What does this PR do?
    
    <!-- Describe the details of this PR. -->
    
    ## Related issues
    
    <!--
    Is there any related issue? If this PR closes them you say say
    fix/closes:
    
    - #xxxx0
    - #xxxx1
    - Fixes #xxxx2
    -->
    
    ## Does this PR introduce any user-facing change?
    
    <!--
    If any user-facing interface changes, please [open an
    issue](https://github.com/apache/fory/issues/new/choose) describing the
    need to do so and update the document if necessary.
    
    Delete section if not applicable.
    -->
    
    - [ ] Does this PR introduce any public API change?
    - [ ] Does this PR introduce any binary protocol compatibility change?
    
    ## Benchmark
    
    <!--
    When the PR has an impact on performance (if you don't know whether the
    PR will have an impact on performance, you can submit the PR first, and
    if it will have impact on performance, the code reviewer will explain
    it), be sure to attach a benchmark data here.
    
    Delete section if not applicable.
    -->
---
 rust/Cargo.toml             | 4 +++-
 rust/fory-core/Cargo.toml   | 7 +++++++
 rust/fory-derive/Cargo.toml | 9 ++++++++-
 rust/fory/Cargo.toml        | 5 +++--
 4 files changed, 21 insertions(+), 4 deletions(-)

diff --git a/rust/Cargo.toml b/rust/Cargo.toml
index b5cf9daba..30b47529f 100644
--- a/rust/Cargo.toml
+++ b/rust/Cargo.toml
@@ -33,9 +33,11 @@ resolver = "2"
 [workspace.package]
 version = "0.13.0"
 rust-version = "1.70"
+description = "Apache Fory: Blazingly fast multi-language serialization 
framework with trait objects and reference support."
 license = "Apache-2.0"
+license-file = "../LICENSE"
 readme = "README.md"
 repository = "https://github.com/apache/fory";
 edition = "2021"
-keywords = ["fory", "data", "serialization"]
+keywords = ["serialization", "serde", "trait-object", "zero-copy", 
"schema-evolution"]
 categories = ["encoding"]
diff --git a/rust/fory-core/Cargo.toml b/rust/fory-core/Cargo.toml
index 10ff46726..de95ce180 100644
--- a/rust/fory-core/Cargo.toml
+++ b/rust/fory-core/Cargo.toml
@@ -20,6 +20,13 @@ name = "fory-core"
 version.workspace = true
 edition.workspace = true
 rust-version.workspace = true
+description = "Apache Fory: Blazingly fast multi-language serialization 
framework with trait objects and reference support."
+license = "Apache-2.0"
+license-file = "../../LICENSE"
+readme = "../README.md"
+repository = "https://github.com/apache/fory";
+keywords = ["serialization", "serde", "trait-object", "zero-copy", 
"schema-evolution"]
+categories = ["encoding"]
 
 [dependencies]
 proc-macro2 = { default-features = false, version = "1.0" }
diff --git a/rust/fory-derive/Cargo.toml b/rust/fory-derive/Cargo.toml
index 79f69d663..220cd80c2 100644
--- a/rust/fory-derive/Cargo.toml
+++ b/rust/fory-derive/Cargo.toml
@@ -20,13 +20,20 @@ name = "fory-derive"
 version.workspace = true
 edition.workspace = true
 rust-version.workspace = true
+description = "Apache Fory: Blazingly fast multi-language serialization 
framework with trait objects and reference support."
+license = "Apache-2.0"
+license-file = "../../LICENSE"
+readme = "../README.md"
+repository = "https://github.com/apache/fory";
+keywords = ["serialization", "serde", "trait-object", "zero-copy", 
"schema-evolution"]
+categories = ["encoding"]
 
 [lib]
 proc-macro = true
 
 [dependencies]
 proc-macro2 = { default-features = false, version = "1.0" }
-fory-core = { path = "../fory-core"}
+fory-core = { path = "../fory-core", version = "0.13.0"}
 syn = { default-features = false, version = "2.0", features = [
     "parsing",
     "proc-macro",
diff --git a/rust/fory/Cargo.toml b/rust/fory/Cargo.toml
index 08c2750c6..4b4a0207f 100644
--- a/rust/fory/Cargo.toml
+++ b/rust/fory/Cargo.toml
@@ -26,7 +26,8 @@ repository.workspace = true
 edition.workspace = true
 keywords.workspace = true
 categories.workspace = true
+description = "Apache Fory: Blazingly fast multi-language serialization 
framework with trait objects and reference support."
 
 [dependencies]
-fory-core = { path = "../fory-core"}
-fory-derive = { path = "../fory-derive"}
+fory-core = { path = "../fory-core", version = "0.13.0"}
+fory-derive = { path = "../fory-derive", version = "0.13.0"}


---------------------------------------------------------------------
To unsubscribe, e-mail: [email protected]
For additional commands, e-mail: [email protected]

Reply via email to