новый файл: .gitignore
новый файл: Cargo.lock новый файл: Cargo.toml новый файл: english.chrs новый файл: russian.chrs новый файл: src/alphabet.rs новый файл: src/app.rs новый файл: src/ciphertext.rs новый файл: src/cli.rs новый файл: src/decoder.rs новый файл: src/main.rs новый файл: src/storage.rs новый файл: src/tui.rs
This commit is contained in:
commit
ff049620d5
13 changed files with 2273 additions and 0 deletions
13
Cargo.toml
Normal file
13
Cargo.toml
Normal file
|
|
@ -0,0 +1,13 @@
|
|||
[package]
|
||||
name = "evolution_crypting"
|
||||
version = "0.1.0"
|
||||
edition = "2024"
|
||||
|
||||
[dependencies]
|
||||
bit-set = "0.9.1"
|
||||
bitvec = "1.0.1"
|
||||
clap = { version = "4.6.0", features = ["derive"] }
|
||||
rand = "0.10.0"
|
||||
rand_chacha = "0.10.0"
|
||||
ratatui = "0.29"
|
||||
crossterm = "0.28"
|
||||
Loading…
Add table
Add a link
Reference in a new issue