mirror of
https://git.alemi.dev/tci.git
synced 2024-11-12 19:59:19 +01:00
chore: initial commit from template
This commit is contained in:
commit
7e3386242e
5 changed files with 57 additions and 0 deletions
17
.editorconfig
Normal file
17
.editorconfig
Normal 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
1
.gitignore
vendored
Normal file
|
@ -0,0 +1 @@
|
|||
/target
|
1
.rustfmt.toml
Normal file
1
.rustfmt.toml
Normal file
|
@ -0,0 +1 @@
|
|||
hard_tabs = true
|
34
Cargo.toml
Normal file
34
Cargo.toml
Normal 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
4
src/main.rs
Normal file
|
@ -0,0 +1,4 @@
|
|||
|
||||
fn main() {
|
||||
println!("Hello, world!");
|
||||
}
|
Loading…
Reference in a new issue