[package] name = "v_notify" version = "0.1.0" edition = "2021" description = "My notifs crate" rust-version = "1.80" license = "MIT" readme = "README.md" repository = "https://github.com/valeratrades/v_notify" [package.metadata.docs.rs] cargo-args = ["-Zunstable-options", "-Zrustdoc-scrape-examples"] [package.metadata.cargo-machete] ignored = ["derive-new", "anyhow", "serde", "tokio"] [lints.clippy] cmp_float = "allow" # is bad for `==` direct comparisons, but `<` and `>` should be allowed #get_first = "allow" # const fn, so actually more performant len_zero = "allow" # `.empty()` is O(1) but on &str only [dependencies] anyhow = "^1.0.86" clap = { version = "^4.5.4", features = ["derive"] } config = { version = "^0.14.0" } derive-new = "^0.6.0" v_utils = { features = ["io", "macros"], path = "/home/v/s/v_utils/v_utils", version = "^1.6.3" }