71 seperate core functionality from app logic #97

Merged
PatrykHegenberg merged 4 commits from 71-seperate-core-functionality-from-app-logic into main 2024-05-05 14:35:53 +02:00
4 changed files with 26 additions and 0 deletions
Showing only changes of commit 8fbe713ade - Show all commits

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!");
}