This repository has been archived on 2024-10-20. You can view files and clone it, but cannot push or open issues or pull requests.
WANessa/Cargo.toml

24 lines
1.0 KiB
TOML
Raw Permalink Normal View History

2024-02-15 01:22:10 +01:00
workspace = { members = ["config", "logging"] }
2024-02-13 00:56:29 +01:00
[package]
name = "wanessa"
version = "0.1.0"
edition = "2021"
# See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html
[dependencies]
[lints.rust]
unsafe_code = "forbid"
2024-02-13 18:40:31 +01:00
missing_docs = "warn"
[lints.clippy]
enum_glob_use = "deny" # https://rust-lang.github.io/rust-clippy/master/index.html#/enum_glob_use
pedantic = "deny" # https://rust-lang.github.io/rust-clippy/master/index.html#/?groups=pedantic
nursery = "deny" # wip lints: https://rust-lang.github.io/rust-clippy/master/index.html#/?groups=nursery
2024-02-13 18:40:31 +01:00
unwrap_used = "forbid" # https://rust-lang.github.io/rust-clippy/master/index.html#/unwrap_used
missing_const_for_fn = "warn" # https://rust-lang.github.io/rust-clippy/master/index.html#/missing_const_for_fn
2024-02-13 18:40:31 +01:00
missing_assert_message = "warn" # https://rust-lang.github.io/rust-clippy/master/index.html#/missing_assert_message
missing_errors_doc = "warn" # https://rust-lang.github.io/rust-clippy/master/index.html#/missing_assert_message