You've already forked architect
29 lines
647 B
TOML
29 lines
647 B
TOML
[package]
|
|
name = "sample"
|
|
version = "0.0.0"
|
|
|
|
authors.workspace = true
|
|
edition.workspace = true
|
|
license-file.workspace = true
|
|
rust-version.workspace = true
|
|
|
|
[lints.rust]
|
|
arithmetic_overflow = "forbid"
|
|
unsafe_code = "forbid"
|
|
|
|
[lints.clippy]
|
|
arithmetic_side_effects = "forbid"
|
|
as_conversions = "forbid"
|
|
checked_conversions = "forbid"
|
|
default_union_representation = "forbid"
|
|
expect_used = "forbid"
|
|
indexing_slicing = "forbid"
|
|
integer_division = "forbid"
|
|
integer_division_remainder_used = "forbid"
|
|
transmute_undefined_repr = "forbid"
|
|
unchecked_duration_subtraction = "forbid"
|
|
unwrap_used = "deny"
|
|
|
|
[build-dependencies]
|
|
architect = { workspace = true }
|