https://github.com/1git2clone/caesar-macro
https://github.com/1git2clone/caesar-macro
rust rust-lang rust-macro rust-macros rust-proc-macro
Last synced: 9 months ago
JSON representation
- Host: GitHub
- URL: https://github.com/1git2clone/caesar-macro
- Owner: 1Git2Clone
- License: mit
- Created: 2024-10-27T19:33:04.000Z (about 1 year ago)
- Default Branch: main
- Last Pushed: 2025-02-04T01:19:19.000Z (11 months ago)
- Last Synced: 2025-03-29T20:17:00.784Z (10 months ago)
- Topics: rust, rust-lang, rust-macro, rust-macros, rust-proc-macro
- Language: Rust
- Homepage: https://crates.io/crates/ceasar_macro
- Size: 11.7 KB
- Stars: 1
- Watchers: 1
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
- License: LICENSE
Awesome Lists containing this project
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:
```toml
[dependencies]
ceasar_macro = { path = "../" }
```
Or with git:
```toml
[dependencies]
ceasar_macro = { git = "https://github.com/1Git2Clone/caesar-macro" }
```
Or from [crates.io](https://crates.io/caesar_macro):
```sh
cargo add ceasar_macro
```
```toml
# Cargo.toml
ceasar_macro = "0.1.2"
```
[1]: https://en.wikipedia.org/wiki/Caesar_cipher "Wikipedia/Caesar_cipher"