refactor: refactoring code, separate crates

preparing to create a GUI
This commit is contained in:
2022-01-23 03:50:33 +03:00
parent 324047848c
commit 66d3ab4221
24 changed files with 861 additions and 431 deletions

8
gui/Cargo.toml Normal file
View File

@ -0,0 +1,8 @@
[package]
name = "gui"
version = "0.1.0"
edition = "2021"
# See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html
[dependencies]

3
gui/README.md Normal file
View File

@ -0,0 +1,3 @@
# Gui
(WIP)

3
gui/src/main.rs Normal file
View File

@ -0,0 +1,3 @@
fn main() {
println!("Hello, world!");
}