From e13090f9510635d5e504a9f6fb2a054d05ea41a6 Mon Sep 17 00:00:00 2001 From: Alex Kotov Date: Mon, 23 Jan 2023 01:53:32 +0400 Subject: [PATCH] Initialize Cargo package --- .gitignore | 1 + Cargo.lock | 7 +++++++ Cargo.toml | 11 +++++++++++ README.md | 2 ++ rustfmt.toml | 1 + src/main.rs | 3 +++ 6 files changed, 25 insertions(+) create mode 100644 .gitignore create mode 100644 Cargo.lock create mode 100644 Cargo.toml create mode 100644 README.md create mode 100644 rustfmt.toml create mode 100644 src/main.rs 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!"); +}