22 lines
435 B
TOML
22 lines
435 B
TOML
|
[package]
|
||
|
name = "lib-rs"
|
||
|
version = "0.1.0"
|
||
|
edition = "2021"
|
||
|
description = "library template"
|
||
|
license = "MIT OR Apache-2.0"
|
||
|
repository = "https://git.mkaenner.de/max/lib-rs"
|
||
|
|
||
|
[lints.rust]
|
||
|
unsafe_code = "forbid"
|
||
|
|
||
|
[lints.clippy]
|
||
|
enum_glob_use = "deny"
|
||
|
pedantic = "deny"
|
||
|
nursery = "deny"
|
||
|
unwrap_used = "deny"
|
||
|
cargo = "warn"
|
||
|
|
||
|
# See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html
|
||
|
|
||
|
[dependencies]
|