diff options
Diffstat (limited to 'trakt-rs')
-rw-r--r-- | trakt-rs/Cargo.toml | 7 | ||||
-rw-r--r-- | trakt-rs/src/lib.rs | 1 |
2 files changed, 8 insertions, 0 deletions
diff --git a/trakt-rs/Cargo.toml b/trakt-rs/Cargo.toml index 39eefb0..f86c89b 100644 --- a/trakt-rs/Cargo.toml +++ b/trakt-rs/Cargo.toml @@ -1,7 +1,14 @@ [package] name = "trakt-rs" +description = "A Rust library for the Trakt.tv API" +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", "client"] +categories = ["api-bindings"] [features] default = [] diff --git a/trakt-rs/src/lib.rs b/trakt-rs/src/lib.rs index d41bd5e..cd2ee7c 100644 --- a/trakt-rs/src/lib.rs +++ b/trakt-rs/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, |