You've already forked architect
32 lines
705 B
TOML
32 lines
705 B
TOML
[package]
|
|
name = "sample"
|
|
version = "0.0.0"
|
|
license-file.workspace = true
|
|
|
|
edition.workspace = true
|
|
rust-version.workspace = true
|
|
|
|
[package.metadata.docs.rs]
|
|
all-features = true
|
|
rustdoc-args = ["--cfg", "docsrs"]
|
|
|
|
[build-dependencies]
|
|
architect = { workspace = true }
|
|
|
|
[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"
|
|
|
|
[lints.rust]
|
|
arithmetic_overflow = "forbid"
|
|
unsafe_code = "forbid"
|