From 75bbd993e358def1ca351da7a2c10a64f4674f44 Mon Sep 17 00:00:00 2001 From: vic1707 <28602203+vic1707@users.noreply.github.com> Date: Tue, 9 Jul 2024 12:26:15 +0200 Subject: [PATCH] add missing informations to Cargo.toml --- .cargo/config.toml | 2 +- Cargo.lock | 2 +- Cargo.toml | 19 ++++++++++++++++++- 3 files changed, 20 insertions(+), 3 deletions(-) diff --git a/.cargo/config.toml b/.cargo/config.toml index 6f82836..a01dc1f 100755 --- a/.cargo/config.toml +++ b/.cargo/config.toml @@ -4,7 +4,7 @@ rustflags = [ "-Dclippy::pedantic", "-Dclippy::restriction", "-Dclippy::nursery", - # "-Dclippy::cargo", + "-Dclippy::cargo", ## Conflicts ## "-Aclippy::blanket_clippy_restriction_lints", # clippy::restriction - can't enable clippy::restriction if this is enabled "-Aclippy::implicit_return", # clippy::needless-return - remove return keyword when not needed diff --git a/Cargo.lock b/Cargo.lock index ea1fa86..a39ab2f 100644 --- a/Cargo.lock +++ b/Cargo.lock @@ -43,7 +43,7 @@ dependencies = [ [[package]] name = "serde-versioning" -version = "0.0.0" +version = "0.0.1" dependencies = [ "proc-macro2", "quote", diff --git a/Cargo.toml b/Cargo.toml index dfa4a96..4dda335 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -1,7 +1,24 @@ [package] name = "serde-versioning" -version = "0.0.0" +version = "0.0.1" edition = "2021" +authors = ["Victor LEFEBVRE "] +description = "Add versioning support to `serde`'s `Deserialize` derive macro." +# documentation = "https://docs.rs/serde-versioning" +homepage = "https://github.com/vic1707/serde-versioning" +license = "WTFPL" +readme = "README.md" +repository = "https://github.com/vic1707/serde-versioning" +include = [ + "src/**/*", + "Cargo.toml", + "Cargo.lock", + "README", + "LICENSE", +] +categories = ["encoding", "no-std", "no-std::no-alloc"] +keywords = ["serde", "versioning", "deserialization", "serialization", "no_std"] +rust-version = "1.65.0" [lib] proc-macro = true