Crates.io | ceasar_macro |
lib.rs | ceasar_macro |
version | |
source | src |
created_at | 2024-10-27 20:12:00.125586 |
updated_at | 2024-10-27 20:28:29.227052 |
description | A proc macro for evaluating ascii alphabetic character ciphers. |
homepage | https://github.com/1git2clone/ceasar_cipher |
repository | https://github.com/1git2clone/ceasar_cipher |
max_upload_size | |
id | 1424931 |
Cargo.toml error: | TOML parse error at line 22, column 1 | 22 | 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 |
A rust procedural macro implementation for the Caesar cipher algorithm[1].
You can import it as a path in your Cargo.toml
file like so:
[dependencies]
ceasar_macro = { path = "../" }
Or with git:
[dependencies]
ceasar_macro = { git = "https://github.com/1Git2Clone/caesar_macro" }
Or from crates.io:
cargo add ceasar_macro
# Cargo.toml
ceasar_macro = "0.1.2"