ceasar_macro

Crates.ioceasar_macro
lib.rsceasar_macro
version
sourcesrc
created_at2024-10-27 20:12:00.125586
updated_at2024-10-27 20:28:29.227052
descriptionA proc macro for evaluating ascii alphabetic character ciphers.
homepagehttps://github.com/1git2clone/ceasar_cipher
repositoryhttps://github.com/1git2clone/ceasar_cipher
max_upload_size
id1424931
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`
size0
1K2S (1Git2Clone)

documentation

README

Caesar cipher

A rust procedural macro implementation for the Caesar cipher algorithm[1].

Usage

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"
Commit count: 14

cargo fmt