Skip to content

Latest commit

 

History

History
36 lines (24 loc) · 639 Bytes

README.md

File metadata and controls

36 lines (24 loc) · 639 Bytes

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"