diff --git a/rocketmq-common/Cargo.toml b/rocketmq-common/Cargo.toml index e444d5a2..8f4dce79 100644 --- a/rocketmq-common/Cargo.toml +++ b/rocketmq-common/Cargo.toml @@ -6,6 +6,7 @@ edition.workspace = true homepage.workspace = true repository.workspace = true license.workspace = true +readme = "README.md" description = "Rust implementation of Apache rocketmq common" # See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html diff --git a/rocketmq-common/README.md b/rocketmq-common/README.md new file mode 100644 index 00000000..4aa6274e --- /dev/null +++ b/rocketmq-common/README.md @@ -0,0 +1,5 @@ +# The Rust Implementation of Apache RocketMQ Common + +## Overview + +Implementation of the Common module in RocketMQ Java version. It mainly houses common methods, aiming to maintain consistency with the RocketMQ Java version. \ No newline at end of file diff --git a/rocketmq-macros/Cargo.toml b/rocketmq-macros/Cargo.toml index 7129a399..b1edc8d8 100644 --- a/rocketmq-macros/Cargo.toml +++ b/rocketmq-macros/Cargo.toml @@ -7,7 +7,7 @@ homepage.workspace = true repository.workspace = true license.workspace = true keywords.workspace = true -readme.workspace = true +readme = "README.md" description.workspace = true # See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html diff --git a/rocketmq-macros/README.md b/rocketmq-macros/README.md new file mode 100644 index 00000000..449f0cfd --- /dev/null +++ b/rocketmq-macros/README.md @@ -0,0 +1,5 @@ +# The Rust Implementation of Apache RocketMQ macros + +## Overview + +The entire set of common macros for RocketMQ-Rust is implemented in this module. \ No newline at end of file diff --git a/rocketmq-remoting/Cargo.toml b/rocketmq-remoting/Cargo.toml index 57f9e99c..5fb83aef 100644 --- a/rocketmq-remoting/Cargo.toml +++ b/rocketmq-remoting/Cargo.toml @@ -7,6 +7,7 @@ homepage.workspace = true repository.workspace = true license.workspace = true description = "Rust implementation of Apache rocketmq remoting" +readme = "README.md" # See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html diff --git a/rocketmq-remoting/README.md b/rocketmq-remoting/README.md new file mode 100644 index 00000000..92bbe250 --- /dev/null +++ b/rocketmq-remoting/README.md @@ -0,0 +1,5 @@ +# The Rust Implementation of Apache RocketMQ remoting + +## Overview + +The remoting module is primarily responsible for protocol encoding and decoding, as well as network-related functionalities. \ No newline at end of file