feature(mobile,desktop): add basic repo components

This commit is contained in:
Patryk Hegenberg 2024-05-05 14:25:19 +02:00
parent 6dbf39110b
commit 8fbe713ade
4 changed files with 26 additions and 0 deletions

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