diff --git a/.gitignore b/.gitignore index 3ca43ae..e22d768 100644 --- a/.gitignore +++ b/.gitignore @@ -4,13 +4,11 @@ debug/ target/ -# Remove Cargo.lock from gitignore if creating an executable, leave it for libraries -# More information here https://doc.rust-lang.org/cargo/guide/cargo-toml-vs-cargo-lock.html -Cargo.lock - # These are backup files generated by rustfmt **/*.rs.bk # MSVC Windows builds of rustc generate these, which store debugging information *.pdb +# IDEs and editors +.vscode diff --git a/Cargo.toml b/Cargo.toml new file mode 100644 index 0000000..761d36a --- /dev/null +++ b/Cargo.toml @@ -0,0 +1,7 @@ +[workspace] +members = [ + "webapp", + "clego", + "tauri", +] +resolver = "2" diff --git a/clego/Cargo.toml b/clego/Cargo.toml new file mode 100644 index 0000000..495a5a2 --- /dev/null +++ b/clego/Cargo.toml @@ -0,0 +1,6 @@ +[package] +name = "clego" +version = "0.1.0" +edition = "2021" + +[dependencies] diff --git a/clego/src/main.rs b/clego/src/main.rs new file mode 100644 index 0000000..e7a11a9 --- /dev/null +++ b/clego/src/main.rs @@ -0,0 +1,3 @@ +fn main() { + println!("Hello, world!"); +} diff --git a/tauri/.gitkeep b/tauri/.gitkeep new file mode 100644 index 0000000..e69de29 diff --git a/webapp/.gitkeep b/webapp/.gitkeep new file mode 100644 index 0000000..e69de29