Crates.io | macro-toolset |
lib.rs | macro-toolset |
version | |
source | src |
created_at | 2024-11-08 14:00:18.928764 |
updated_at | 2024-12-12 11:02:05.396666 |
description | Some useful macros |
homepage | |
repository | https://github.com/cxw620/macro-toolset |
max_upload_size | |
id | 1441233 |
Cargo.toml error: | TOML parse error at line 19, column 1 | 19 | autolib = false | ^^^^^^^ unknown field `autolib`, expected one of `name`, `version`, `edition`, `authors`, `description`, `readme`, `license`, `repository`, `homepage`, `documentation`, `build`, `resolver`, `links`, `default-run`, `default_dash_run`, `rust-version`, `rust_dash_version`, `rust_version`, `license-file`, `license_dash_file`, `license_file`, `licenseFile`, `license_capital_file`, `forced-target`, `forced_dash_target`, `autobins`, `autotests`, `autoexamples`, `autobenches`, `publish`, `metadata`, `keywords`, `categories`, `exclude`, `include` |
size | 0 |
Some useful macros, to make the repetitive code less.
str_concat
almost everythingThe features listed in Cargo.toml
:
dev
: For development and enable all features. Not recommended since introducing axum, etc will add many dependencies.feat-base64
: Base64 encode and decode related utilities.feat-hash
: Hash algorithms (MD5, SHA256, SHA384, SHA512) related utilities.feat-random
: Random number / string related utilities. You shall add rand
to your Cargo.toml
.feat-random-fast
: Random number / string related utilities. You shall add rand
to your Cargo.toml
.feat-string
: String related utilities.
feat-string-ext-axum
: implement IntoResponse
for StringExt
.feat-string-ext-base64
: wrapper that indicates the inner slice should be encoded in base64 over &[u8]
feat-string-ext-hex
: hex encoding based on const-hex
, with better performance than NumStr
.feat-string-ext-ryu
: float number support.1.66
This crate is currently intended for personal use mostly, but contributions are welcome.
GPL-3.0-only