Logging #26

Open
leon wants to merge 33 commits from Logging into main
3 changed files with 25 additions and 1 deletions
Showing only changes of commit a54a226cef - Show all commits

View File

@ -1,4 +1,4 @@
workspace = { members = ["config", "logging"] }
workspace = { members = ["config", "logging", "macros"] }
[package]
name = "wanessa"

24
macros/Cargo.toml Normal file
View File

@ -0,0 +1,24 @@
[package]
name = "macros"
version = "0.1.0"
edition = "2021"
# See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html
[dependencies]
[lib]
proc-macro = true
[lints.rust]
unsafe_code = "forbid"
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
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
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

0
macros/src/lib.rs Normal file
View File