1
0
Fork 0

Initialize Cargo package

This commit is contained in:
Alex Kotov 2023-01-23 01:53:32 +04:00
parent f0da7ee95a
commit dfef376a79
Signed by: kotovalexarian
GPG Key ID: 553C0EBBEB5D5F08
6 changed files with 27 additions and 0 deletions

1
.gitignore vendored Normal file
View File

@ -0,0 +1 @@
/target/

7
Cargo.lock generated Normal file
View File

@ -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"

11
Cargo.toml Normal file
View File

@ -0,0 +1,11 @@
[package]
name = "leqsikoni-backend"
version = "0.0.0"
authors = ["Alex Kotov <kotovalexarian@gmail.com>"]
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

4
README.md Normal file
View File

@ -0,0 +1,4 @@
Leqsikoni back end
==================
API back end of the Leqsikoni.

1
rustfmt.toml Normal file
View File

@ -0,0 +1 @@
max_width = 80

3
src/main.rs Normal file
View File

@ -0,0 +1,3 @@
fn main() {
println!("Hello, World!");
}