From 7714ddf97109881c03d8df8bba48c56a526d7740 Mon Sep 17 00:00:00 2001 From: famfo Date: Fri, 15 Jul 2022 18:39:42 +0300 Subject: [PATCH] Initial commit --- .gitignore | 1 + backend/Cargo.toml | 8 ++++++++ backend/src/main.rs | 3 +++ frontend/Cargo.lock | 7 +++++++ frontend/Cargo.toml | 8 ++++++++ frontend/src/main.rs | 3 +++ 6 files changed, 30 insertions(+) create mode 100644 .gitignore create mode 100644 backend/Cargo.toml create mode 100644 backend/src/main.rs create mode 100644 frontend/Cargo.lock create mode 100644 frontend/Cargo.toml create mode 100644 frontend/src/main.rs diff --git a/.gitignore b/.gitignore new file mode 100644 index 0000000..4808651 --- /dev/null +++ b/.gitignore @@ -0,0 +1 @@ +*/**/target diff --git a/backend/Cargo.toml b/backend/Cargo.toml new file mode 100644 index 0000000..f781829 --- /dev/null +++ b/backend/Cargo.toml @@ -0,0 +1,8 @@ +[package] +name = "backend" +version = "0.1.0" +edition = "2021" + +# See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html + +[dependencies] diff --git a/backend/src/main.rs b/backend/src/main.rs new file mode 100644 index 0000000..e7a11a9 --- /dev/null +++ b/backend/src/main.rs @@ -0,0 +1,3 @@ +fn main() { + println!("Hello, world!"); +} diff --git a/frontend/Cargo.lock b/frontend/Cargo.lock new file mode 100644 index 0000000..2abb589 --- /dev/null +++ b/frontend/Cargo.lock @@ -0,0 +1,7 @@ +# This file is automatically @generated by Cargo. +# It is not intended for manual editing. +version = 3 + +[[package]] +name = "frontend" +version = "0.1.0" diff --git a/frontend/Cargo.toml b/frontend/Cargo.toml new file mode 100644 index 0000000..4046d5f --- /dev/null +++ b/frontend/Cargo.toml @@ -0,0 +1,8 @@ +[package] +name = "frontend" +version = "0.1.0" +edition = "2021" + +# See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html + +[dependencies] diff --git a/frontend/src/main.rs b/frontend/src/main.rs new file mode 100644 index 0000000..e7a11a9 --- /dev/null +++ b/frontend/src/main.rs @@ -0,0 +1,3 @@ +fn main() { + println!("Hello, world!"); +}