chore: initial commit from template

This commit is contained in:
əlemi 2024-02-13 15:57:58 +01:00
commit 7e3386242e
Signed by: alemi
GPG key ID: A4895B84D311642C
5 changed files with 57 additions and 0 deletions

17
.editorconfig Normal file
View file

@ -0,0 +1,17 @@
# Default to Unix-style newlines with a newline ending every file
[*]
end_of_line = lf
insert_final_newline = true
charset = utf-8
indent_style = tab
indent_size = 4
[*.rs]
indent_size = 2
[*.js]
indent_size = 2
[*.{yml,yaml}]
indent_style = space
indent_size = 2

1
.gitignore vendored Normal file
View file

@ -0,0 +1 @@
/target

1
.rustfmt.toml Normal file
View file

@ -0,0 +1 @@
hard_tabs = true

34
Cargo.toml Normal file
View file

@ -0,0 +1,34 @@
[package]
name = "{{project-name}}"
version = "0.1.0"
edition = "2021"
authors = [ "alemi <me@alemi.dev>" ]
readme = "README.md"
#description = ""
#keywords = []
#documentation = ""
#repository = "https://git.alemi.dev/{{project-name}}"
#license = "LICENSE"
[dependencies]
[dev-dependencies]
[features]
default = []
[lints.rust]
unsafe_code = "forbid"
[lints.clippy]
pedantic = "warn" # extra lints, maybe obnoxious, just warn
nursery = "warn" # experimental lints, may include false positives, just warn
unwrap_used = "warn" # warn for every unwrap used
#cargo = "warn" # warn about cargo manifest lints, this is annoying at the beginning
[profile.release] # make small binaries! will take quite longer, from https://github.com/johnthagen/min-sized-rust
opt-level = 'z' # optimize for size
lto = true # enable Link Time Optimisation: don't link unused stuff
codegen-units = 1 # reducing codegen units slows it down but allows for better optimization
panic = 'abort' # abort on panic: don't include code to show what went wrong in release
strip = "symbols" # strip symbols from binary: have fun debugging on prod! :)

4
src/main.rs Normal file
View file

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