https://github.com/1Git2Clone/caesar-macro
https://github.com/1Git2Clone/caesar-macro
rust rust-lang rust-macro rust-macros rust-proc-macro
Last synced: 5 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: 2024-10-27T20:43:18.000Z (about 1 year ago)
- Last Synced: 2024-10-27T23:16:16.000Z (about 1 year ago)
- Topics: rust, rust-lang, rust-macro, rust-macros, rust-proc-macro
- Language: Rust
- Homepage: https://crates.io/crates/ceasar_macro
- Size: 9.77 KB
- Stars: 0
- 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"