-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Added installation and build instructions; made shift size 1 to 25 no…
…t 1 to 26 in GUI; moved dictionary to be static in a source file and not read in from a text file each time it's needed
- Loading branch information
Showing
8 changed files
with
370,194 additions
and
48 deletions.
There are no files selected for viewing
Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.
Oops, something went wrong.
Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.
Oops, something went wrong.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,11 +1,14 @@ | ||
[package] | ||
name = "caesar_cipher" | ||
name = "rust_caesar_cipher" | ||
version = "0.0.1" | ||
authors = ["Tom https://github.com/FeynmanTesla"] | ||
authors = ["Tom Hardern - https://github.com/FeynmanTesla"] | ||
edition = "2018" | ||
|
||
# See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html | ||
|
||
[dependencies] | ||
rand = "0.7.3" | ||
druid = { git = "https://github.com/linebender/druid.git" } | ||
druid = { git = "https://github.com/linebender/druid.git" } | ||
|
||
[profile.release] | ||
opt-level = 3 |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,2 +1,7 @@ | ||
# Rust-Caesar-Cipher | ||
A Rust program that encodes and decodes text according to Caesar ciphers via a GUI or CLI. It can automatically decode ciphertext whose shift size is unknown. | ||
|
||
# Installation and building | ||
It is a prerequisite to have Cargo installed. Install it with rustup (recommended) at https://www.rust-lang.org/tools/install. | ||
With Cargo installed, run "cargo build --release" from the root directory of the repository. | ||
The executable will then be built at target/release/rust_caesar_cipher (from the repository root). |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Oops, something went wrong.