mirror of
https://github.com/kristoferssolo/cipher-workshop.git
synced 2026-02-04 06:42:11 +00:00
Initial commit
This commit is contained in:
20
tui/Cargo.toml
Normal file
20
tui/Cargo.toml
Normal file
@@ -0,0 +1,20 @@
|
||||
[package]
|
||||
name = "tui"
|
||||
version = "0.1.0"
|
||||
authors = ["Kristofers Solo <dev@kristofers.xyz>"]
|
||||
edition = "2024"
|
||||
|
||||
[dependencies]
|
||||
aes = { workspace = true, optional = true }
|
||||
anyhow.workspace = true
|
||||
des = { workspace = true, optional = true }
|
||||
ratatui = "0.29"
|
||||
thiserror.workspace = true
|
||||
|
||||
[features]
|
||||
default = ["des", "aes"]
|
||||
des = ["dep:des"]
|
||||
aes = ["dep:aes"]
|
||||
|
||||
[lints]
|
||||
workspace = true
|
||||
3
tui/src/main.rs
Normal file
3
tui/src/main.rs
Normal file
@@ -0,0 +1,3 @@
|
||||
fn main() {
|
||||
println!("Hello, world!");
|
||||
}
|
||||
Reference in New Issue
Block a user