An open API service indexing awesome lists of open source software.

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

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"