From 740ea019bcc81cf04bf55e68fde31a0ef043071d Mon Sep 17 00:00:00 2001 From: Amos Wenger Date: Wed, 31 Jul 2024 18:27:25 +0200 Subject: [PATCH] More cleanups --- merde_json/Cargo.toml | 2 +- merde_json_types/Cargo.toml | 6 +++--- 2 files changed, 4 insertions(+), 4 deletions(-) diff --git a/merde_json/Cargo.toml b/merde_json/Cargo.toml index 1ad4641..3cc0c19 100644 --- a/merde_json/Cargo.toml +++ b/merde_json/Cargo.toml @@ -5,7 +5,7 @@ edition = "2021" authors = ["Amos Wenger "] description = "Serialize and deserialize JSON with jiter and declarative macros" license = "Apache-2.0 OR MIT" -readme = "../README.md" +readme = "README.md" repository = "https://github.com/bearcove/merde_json" keywords = ["json", "serialization", "deserialization", "jiter"] categories = ["encoding", "parser-implementations"] diff --git a/merde_json_types/Cargo.toml b/merde_json_types/Cargo.toml index 5e082ff..6f8a287 100644 --- a/merde_json_types/Cargo.toml +++ b/merde_json_types/Cargo.toml @@ -1,13 +1,13 @@ [package] +edition = "2021" name = "merde_json_types" version = "2.0.0" -edition = "2021" authors = ["Amos Wenger "] -description = "Provide types that can be (de)serialized with `merde_json` if you enable the `merde_json` feature of this crate, but which are otherwise light" +description = "Wrapper types for merde_json that implement serialization/deserialization" license = "Apache-2.0 OR MIT" readme = "README.md" repository = "https://github.com/bearcove/merde_json" -keywords = ["json", "serialization", "deserialization", "jiter"] +keywords = ["json", "serialization", "deserialization", "jiter", "merde"] categories = ["encoding", "parser-implementations"] [dependencies]