Leon Wilzer
2580886d04
All checks were successful
continuous-integration/drone/push Build is passing
29 lines
1.3 KiB
TOML
29 lines
1.3 KiB
TOML
[package]
|
|
name = "logging"
|
|
version = "0.1.0"
|
|
edition = "2021"
|
|
|
|
# See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html
|
|
|
|
[dependencies]
|
|
chrono = { version = "0.4.34", default-features = false, features = ["now"] }
|
|
config = { path = "../config"}
|
|
|
|
[dev-dependencies]
|
|
uuid = { version = "1.7.0", default-features = false, features = ["v4", "fast-rng"] }
|
|
once_cell = { version = "1.19.0", default-features = false, features = ["std"] }
|
|
futures = { version = "0.3.30", default-features = false, features = ["alloc", "executor"] }
|
|
|
|
[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
|