diff options
-rw-r--r-- | Cargo.toml | 7 | ||||
-rw-r--r-- | src/lib.rs | 2 | ||||
-rw-r--r-- | src/schema_schema.rs | 2 |
3 files changed, 9 insertions, 2 deletions
@@ -1,9 +1,12 @@ [package] name = "kdl-schema" version = "0.1.0" +authors = ["boringcactus / Melody Horn"] edition = "2021" - -# See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html +description = "schema types & parsing for KDL" +repository = "https://code.boringcactus.com/kdl-schema/" +license = "BlueOak-1.0.0" +keywords = ["kdl"] [features] default = [] @@ -1,3 +1,5 @@ +#![warn(clippy::pedantic, clippy::cargo)] + #[cfg(feature = "parse-knuffel")] use knuffel::{Decode, DecodeScalar}; diff --git a/src/schema_schema.rs b/src/schema_schema.rs index c7cc2ec..07ff463 100644 --- a/src/schema_schema.rs +++ b/src/schema_schema.rs @@ -1,3 +1,5 @@ +#![allow(clippy::too_many_lines, clippy::wildcard_imports)] + use lazy_static::lazy_static; use super::*; |