14 lines
266 B
TOML
14 lines
266 B
TOML
[package]
|
|
name = "nova-stats"
|
|
version = "0.1.0"
|
|
edition = "2021"
|
|
|
|
[lints.clippy]
|
|
pedantic = { level = "warn", priority = -1 }
|
|
cast_possible_truncation = "allow"
|
|
cast_precision_loss = "allow"
|
|
cast_sign_loss = "allow"
|
|
|
|
[[bin]]
|
|
name = "nova-stats"
|
|
path = "src/main.rs"
|