tci/Cargo.toml
2024-02-15 03:04:53 +01:00

39 lines
1.4 KiB
TOML

[package]
name = "tci"
version = "0.1.0"
edition = "2021"
authors = [ "alemi <me@alemi.dev>" ]
readme = "README.md"
description = "tiny custom CI runner for your selfhosted just-git repositories"
keywords = ["git", "ci", "workflows", "minimal", "selfhosted"]
repository = "https://git.alemi.dev/tci.git"
#documentation = ""
#license = "LICENSE"
[dependencies]
git2 = "0.18.2"
serde = { version = "1.0.196", features = ["derive"] }
tempdir = "0.3.7"
thiserror = "1.0.57"
toml = { version = "0.8.10", features = ["parse"] }
[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! :)