diff --git a/caesar-desktop/Cargo.toml b/caesar-desktop/Cargo.toml new file mode 100644 index 0000000..4868a82 --- /dev/null +++ b/caesar-desktop/Cargo.toml @@ -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" } diff --git a/caesar-desktop/src/main.rs b/caesar-desktop/src/main.rs new file mode 100644 index 0000000..e7a11a9 --- /dev/null +++ b/caesar-desktop/src/main.rs @@ -0,0 +1,3 @@ +fn main() { + println!("Hello, world!"); +} diff --git a/caesar-mobile/Cargo.toml b/caesar-mobile/Cargo.toml new file mode 100644 index 0000000..7223ca9 --- /dev/null +++ b/caesar-mobile/Cargo.toml @@ -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" } diff --git a/caesar-mobile/src/main.rs b/caesar-mobile/src/main.rs new file mode 100644 index 0000000..e7a11a9 --- /dev/null +++ b/caesar-mobile/src/main.rs @@ -0,0 +1,3 @@ +fn main() { + println!("Hello, world!"); +}