Merge pull request #97 from PatrykHegenberg/71-seperate-core-functionality-from-app-logic

71 seperate core functionality from app logic
This commit is contained in:
PatrykHegenberg 2024-05-05 14:35:53 +02:00 committed by GitHub
commit 7a4708eae2
No known key found for this signature in database
GPG key ID: B5690EEEBB952194
7 changed files with 47 additions and 1 deletions

View file

@ -1,3 +1,10 @@
[workspace] [workspace]
resolver = "2" resolver = "2"
members = ["caesar-cli", "caesar-core", "caesar-shuttle"] members = [
"caesar-cli",
"caesar-core",
"caesar-desktop",
"caesar-mobile",
"caesar-shuttle",
"caesar-tui",
]

10
caesar-desktop/Cargo.toml Normal file
View file

@ -0,0 +1,10 @@
[package]
name = "caesar-desktop"
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" }

View file

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

10
caesar-mobile/Cargo.toml Normal file
View file

@ -0,0 +1,10 @@
[package]
name = "caesar-mobile"
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" }

View file

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

10
caesar-tui/Cargo.toml Normal file
View 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
View file

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