From cf6346b8f2470019d7c2b11d3bf02c842fbc3305 Mon Sep 17 00:00:00 2001 From: Genaro Camele Date: Mon, 1 Apr 2024 15:11:44 -0300 Subject: [PATCH] Bumped Gura version to 0.5.4 + Bumped version to 0.1.8 --- Cargo.toml | 4 ++-- README.md | 4 ++-- 2 files changed, 4 insertions(+), 4 deletions(-) diff --git a/Cargo.toml b/Cargo.toml index 506ecfa..45d9b9d 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -7,10 +7,10 @@ keywords = ["serialization", "deserialization", "serde", "serialize", "deseriali license = "MIT" name = "serde_gura" repository = "https://github.com/gura-conf/serde-gura" -version = "0.1.7" +version = "0.1.8" [dependencies] -gura = "0.5" +gura = "0.5.4" indexmap = "1.9" serde = "1.0" diff --git a/README.md b/README.md index 241b863..dc3c058 100644 --- a/README.md +++ b/README.md @@ -19,7 +19,7 @@ Add the following dependencies to your `Cargo.toml`: ```toml [dependencies] serde = "1.0" -serde_gura = "0.1" +serde_gura = "0.1.8" ``` If you want to use `Serialize`/`Deserialize` traits you must specify the *derive* feature in your `Cargo.toml`: @@ -28,7 +28,7 @@ If you want to use `Serialize`/`Deserialize` traits you must specify the *derive ```toml [dependencies] serde = { version = "1.0", features = ["derive"] } -serde_gura = "0.1" +serde_gura = "0.1.8" ```