Skip to content
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

Provide more info and license details in Cargo.toml file #3

Merged
merged 1 commit into from
Sep 11, 2023
Merged
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
8 changes: 6 additions & 2 deletions Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,11 @@ version = "0.0.1"
authors = ["Clemens Zangl <clemens.zangl@gmail.com>"]

description = """
Bitwriter is a library to write data on bitlevel into byte vector.
`rust-bitwriter` is a library to write data on bit level into byte vector.
It is intended to complement https://github.com/irauta/bitreader with a writer
part. It supports standard signed/unsigned integer types, such as `u32`, `i64`.

"Unusual" types, such as `i5` or `u22`, are also supported.
"""

documentation = "https://docs.rs/rust-bitwriter"
Expand All @@ -13,7 +17,7 @@ repository = "https://github.com/Danaozhong/rust-bitwriter"

keywords = ["bitwriter", "binary", "bit", "write"]

license = ""
license = "MIT license "

[dependencies]
cfg-if = "1"
Expand Down