diff --git a/.gitignore b/.gitignore new file mode 100644 index 0000000..b83d222 --- /dev/null +++ b/.gitignore @@ -0,0 +1 @@ +/target/ diff --git a/Cargo.lock b/Cargo.lock new file mode 100644 index 0000000..95edfb4 --- /dev/null +++ b/Cargo.lock @@ -0,0 +1,7 @@ +# This file is automatically @generated by Cargo. +# It is not intended for manual editing. +version = 3 + +[[package]] +name = "leqsikoni-backend" +version = "0.0.0" diff --git a/Cargo.toml b/Cargo.toml new file mode 100644 index 0000000..44e2561 --- /dev/null +++ b/Cargo.toml @@ -0,0 +1,11 @@ +[package] +name = "leqsikoni-backend" +version = "0.0.0" +authors = ["Alex Kotov "] +edition = "2021" +description = "API back end of the Leqsikoni" +readme = true +homepage = "https://git.causa-arcana.com/leqsikoni/backend" +repository = "https://git.causa-arcana.com/leqsikoni/backend.git" +license = "MIT" +publish = false diff --git a/README.md b/README.md new file mode 100644 index 0000000..83af2a9 --- /dev/null +++ b/README.md @@ -0,0 +1,2 @@ +Leqsikoni +========= diff --git a/rustfmt.toml b/rustfmt.toml new file mode 100644 index 0000000..df99c69 --- /dev/null +++ b/rustfmt.toml @@ -0,0 +1 @@ +max_width = 80 diff --git a/src/main.rs b/src/main.rs new file mode 100644 index 0000000..0672e51 --- /dev/null +++ b/src/main.rs @@ -0,0 +1,3 @@ +fn main() { + println!("Hello, World!"); +}