Skip to content

1Git2Clone/caesar_macro

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

14 Commits
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 

Repository files navigation

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"