diff --git a/Cargo.toml b/Cargo.toml index 12350ff..b08286c 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "ruc" -version = "7.0.0" +version = "7.0.1" authors = ["hui.fan@mail.ru"] edition = "2021" description = "Rust Util Collections" @@ -46,9 +46,9 @@ cmd = [] ssh = [ "ssh2" ] algo = [ - "algo_hash", - "algo_crypto", - "algo_rand", + "algo_hash", + "algo_crypto", + "algo_rand", ] algo_hash = [ "sha3" ] @@ -56,12 +56,12 @@ 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" ] diff --git a/README.md b/README.md index dccd32a..2685927 100644 --- a/README.md +++ b/README.md @@ -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.