feature(tui): add basic structure for a tui component to repo
This commit is contained in:
parent
6dbf39110b
commit
47ec143f1e
2 changed files with 13 additions and 0 deletions
10
caesar-tui/Cargo.toml
Normal file
10
caesar-tui/Cargo.toml
Normal file
|
|
@ -0,0 +1,10 @@
|
|||
[package]
|
||||
name = "caesar-tui"
|
||||
version = "0.0.1"
|
||||
edition = "2021"
|
||||
authors = ["Manuel Keidel, Patryk Hegenberg, Krzysztof Stankiewicz"]
|
||||
|
||||
# See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html
|
||||
|
||||
[dependencies]
|
||||
caesar-core = { path = "../caesar-core" }
|
||||
3
caesar-tui/src/main.rs
Normal file
3
caesar-tui/src/main.rs
Normal file
|
|
@ -0,0 +1,3 @@
|
|||
fn main() {
|
||||
println!("Hello, world!");
|
||||
}
|
||||
Loading…
Add table
Add a link
Reference in a new issue