Skip to content

[ISSUE #125]📝Add README.md for every crate #126

New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Merged
merged 1 commit into from
Jan 28, 2024
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
1 change: 1 addition & 0 deletions rocketmq-common/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -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
Expand Down
5 changes: 5 additions & 0 deletions rocketmq-common/README.md
Original file line number Diff line number Diff line change
@@ -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.
2 changes: 1 addition & 1 deletion rocketmq-macros/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -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
Expand Down
5 changes: 5 additions & 0 deletions rocketmq-macros/README.md
Original file line number Diff line number Diff line change
@@ -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.
1 change: 1 addition & 0 deletions rocketmq-remoting/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -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

Expand Down
5 changes: 5 additions & 0 deletions rocketmq-remoting/README.md
Original file line number Diff line number Diff line change
@@ -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.