diff options
Diffstat (limited to 'trakt-macros')
-rw-r--r-- | trakt-macros/Cargo.toml | 9 | ||||
-rw-r--r-- | trakt-macros/src/lib.rs | 1 |
2 files changed, 8 insertions, 2 deletions
diff --git a/trakt-macros/Cargo.toml b/trakt-macros/Cargo.toml index 59df0f7..b09dd3d 100644 --- a/trakt-macros/Cargo.toml +++ b/trakt-macros/Cargo.toml @@ -1,13 +1,18 @@ [package] name = "trakt-macros" +description = "Procedural macros for the trakt-rs crate" +authors = ["Anshul Gupta <ansg191@anshulg.com>"] version = "0.1.0" edition = "2021" +license = "MIT" +repository = "https://github.com/ansg191/trakt" +readme = "../README.md" +keywords = ["trakt", "api", "macros", "macro"] +categories = ["api-bindings", "development-tools::procedural-macro-helpers"] [lib] proc-macro = true -# See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html - [dependencies] proc-macro2 = "1" quote = "1" diff --git a/trakt-macros/src/lib.rs b/trakt-macros/src/lib.rs index 6eddfc0..8be7b08 100644 --- a/trakt-macros/src/lib.rs +++ b/trakt-macros/src/lib.rs @@ -1,6 +1,7 @@ #![warn( clippy::pedantic, clippy::nursery, + clippy::cargo, clippy::as_underscore, clippy::clone_on_ref_ptr, clippy::format_push_string, |