feat: more things

This commit is contained in:
TheClashFruit 2023-04-07 20:13:08 +02:00
parent a133f2ceb9
commit 27e33793a5
Signed by: TheClashFruit
GPG key ID: CF4A319B9A73290C
3 changed files with 24 additions and 0 deletions

13
Cargo.toml Normal file
View file

@ -0,0 +1,13 @@
[workspace]
members = [
"tnm-cli",
"tnm-gui"
]
# https://stackoverflow.com/a/54842093/9613353
[profile.release]
opt-level = 'z'
lto = true
codegen-units = 1
panic = 'abort'
strip = true

8
tnm-gui/Cargo.toml Normal file
View file

@ -0,0 +1,8 @@
[package]
name = "tnm-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
tnm-gui/src/main.rs Normal file
View file

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