From 2e7a48a212b32c53aa6ef9e08ff212ab93284afe Mon Sep 17 00:00:00 2001 From: Dirkjan Ochtman Date: Mon, 27 Feb 2023 10:37:44 +0100 Subject: [PATCH] Add basic Cargo metadata --- instant-xml-macros/Cargo.toml | 3 +++ instant-xml/Cargo.toml | 3 +++ 2 files changed, 6 insertions(+) diff --git a/instant-xml-macros/Cargo.toml b/instant-xml-macros/Cargo.toml index fb59668..5448533 100644 --- a/instant-xml-macros/Cargo.toml +++ b/instant-xml-macros/Cargo.toml @@ -5,6 +5,9 @@ edition = "2021" rust-version = "1.58" workspace = ".." license = "Apache-2.0 OR MIT" +description = "Procedural macros for instant-xml" +documentation = "https://docs.rs/instant-xml-macros" +repository = "https://github.com/InstantDomain/instant-xml" [lib] proc-macro = true diff --git a/instant-xml/Cargo.toml b/instant-xml/Cargo.toml index da019f0..8236cf5 100644 --- a/instant-xml/Cargo.toml +++ b/instant-xml/Cargo.toml @@ -5,6 +5,9 @@ edition = "2021" rust-version = "1.58" workspace = ".." license = "Apache-2.0 OR MIT" +description = "A more rigorous way to map XML to Rust types" +documentation = "https://docs.rs/instant-xml" +repository = "https://github.com/InstantDomain/instant-xml" [dependencies] chrono = { version = "0.4.23", optional = true }