diff options
author | 2024-02-11 21:58:20 -0800 | |
---|---|---|
committer | 2024-02-11 21:58:20 -0800 | |
commit | 5d15ecb58d57f74d2f6c70499458d1d00a447dc8 (patch) | |
tree | f12de1639ab2d4c2f128a163c49ccc029465df1c | |
parent | 365e377349b9b4fba2eeb3fbd77e9069b548d263 (diff) | |
download | trakt-5d15ecb58d57f74d2f6c70499458d1d00a447dc8.tar.gz trakt-5d15ecb58d57f74d2f6c70499458d1d00a447dc8.tar.zst trakt-5d15ecb58d57f74d2f6c70499458d1d00a447dc8.zip |
Adds details to Cargo.toml
-rw-r--r-- | README.md | 1 | ||||
-rw-r--r-- | trakt-macros/Cargo.toml | 9 | ||||
-rw-r--r-- | trakt-macros/src/lib.rs | 1 | ||||
-rw-r--r-- | trakt-rs/Cargo.toml | 7 | ||||
-rw-r--r-- | trakt-rs/src/lib.rs | 1 |
5 files changed, 17 insertions, 2 deletions
diff --git a/README.md b/README.md new file mode 100644 index 0000000..6e4132b --- /dev/null +++ b/README.md @@ -0,0 +1 @@ +# A Pure Rust Trakt.tv Library 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, 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, |