diff options
author | 2024-02-11 21:58:20 -0800 | |
---|---|---|
committer | 2024-02-11 21:58:20 -0800 | |
commit | 5d15ecb58d57f74d2f6c70499458d1d00a447dc8 (patch) | |
tree | f12de1639ab2d4c2f128a163c49ccc029465df1c /trakt-macros | |
parent | 365e377349b9b4fba2eeb3fbd77e9069b548d263 (diff) | |
download | trakt-5d15ecb58d57f74d2f6c70499458d1d00a447dc8.tar.gz trakt-5d15ecb58d57f74d2f6c70499458d1d00a447dc8.tar.zst trakt-5d15ecb58d57f74d2f6c70499458d1d00a447dc8.zip |
Adds details to Cargo.toml
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, |