Initialize Cargo package
This commit is contained in:
parent
f0da7ee95a
commit
e13090f951
6 changed files with 25 additions and 0 deletions
1
.gitignore
vendored
Normal file
1
.gitignore
vendored
Normal file
|
@ -0,0 +1 @@
|
|||
/target/
|
7
Cargo.lock
generated
Normal file
7
Cargo.lock
generated
Normal 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
11
Cargo.toml
Normal 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
|
2
README.md
Normal file
2
README.md
Normal file
|
@ -0,0 +1,2 @@
|
|||
Leqsikoni
|
||||
=========
|
1
rustfmt.toml
Normal file
1
rustfmt.toml
Normal file
|
@ -0,0 +1 @@
|
|||
max_width = 80
|
3
src/main.rs
Normal file
3
src/main.rs
Normal file
|
@ -0,0 +1,3 @@
|
|||
fn main() {
|
||||
println!("Hello, World!");
|
||||
}
|
Loading…
Reference in a new issue