Skip to content

Commit

Permalink
doc
Browse files Browse the repository at this point in the history
  • Loading branch information
haxjump committed Oct 7, 2024
1 parent 08fca37 commit c57f600
Show file tree
Hide file tree
Showing 2 changed files with 19 additions and 12 deletions.
20 changes: 10 additions & 10 deletions Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[package]
name = "ruc"
version = "7.0.0"
version = "7.0.1"
authors = ["[email protected]"]
edition = "2021"
description = "Rust Util Collections"
Expand Down Expand Up @@ -46,22 +46,22 @@ cmd = []
ssh = [ "ssh2" ]

algo = [
"algo_hash",
"algo_crypto",
"algo_rand",
"algo_hash",
"algo_crypto",
"algo_rand",
]

algo_hash = [ "sha3" ]
algo_rand = [ "rand" ]
algo_crypto = [ "ed25519-zebra", "ende_base64", "ende_hex" ]

ende = [
"ende_hex",
"ende_base64",
"ende_compress",
"ende_json",
"ende_msgpack",
"ende_transcode",
"ende_hex",
"ende_base64",
"ende_compress",
"ende_json",
"ende_msgpack",
"ende_transcode",
]

ende_hex = [ "hex" ]
Expand Down
11 changes: 9 additions & 2 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -17,8 +17,15 @@ Rust Util Collection, components included:
- required features: `uau`
- only available on various Linux platforms
- the built-in functions only support the UDP protocol
- Crypto operations
- required features: `crypto`
- Algorithm operations
- required features: `algo`
- rand, hash, ecc sigature, etc.
- Encode/Decode operations
- required features: `ende`
- hex, base64
- zlib compress, zlib uncompress
- json, message-pack, serde transcode
- and so on ...
- ...

In addition, there is a feature named "full", using it will enable all functional features.
Expand Down

0 comments on commit c57f600

Please sign in to comment.