diff --git a/Cargo.toml b/Cargo.toml index 0a48339a..d74aea4e 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "sval" -version = "2.3.0" +version = "2.3.1" authors = ["Ashley Mannix "] edition = "2021" license = "Apache-2.0 OR MIT" @@ -37,7 +37,7 @@ alloc = [] derive = ["dep:sval_derive"] [dependencies.sval_derive] -version = "2.3.0" +version = "2.3.1" path = "derive" optional = true diff --git a/buffer/Cargo.toml b/buffer/Cargo.toml index 3ec48776..d1f0fb60 100644 --- a/buffer/Cargo.toml +++ b/buffer/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "sval_buffer" -version = "2.3.0" +version = "2.3.1" authors = ["Ashley Mannix "] edition = "2021" license = "Apache-2.0 OR MIT" @@ -20,17 +20,17 @@ std = ["alloc", "sval/std"] alloc = ["sval/alloc"] [dependencies.sval] -version = "2.3.0" +version = "2.3.1" path = "../" [dependencies.sval_ref] -version = "2.3.0" +version = "2.3.1" path = "../ref" [dev-dependencies.sval_derive] -version = "2.3.0" +version = "2.3.1" path = "../derive" [dev-dependencies.sval_test] -version = "2.3.0" +version = "2.3.1" path = "../test" diff --git a/derive/Cargo.toml b/derive/Cargo.toml index 6262195e..3c38d823 100644 --- a/derive/Cargo.toml +++ b/derive/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "sval_derive" -version = "2.3.0" +version = "2.3.1" authors = ["Ashley Mannix "] edition = "2021" license = "Apache-2.0 OR MIT" diff --git a/dynamic/Cargo.toml b/dynamic/Cargo.toml index cbfa1190..edf72189 100644 --- a/dynamic/Cargo.toml +++ b/dynamic/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "sval_dynamic" -version = "2.3.0" +version = "2.3.1" authors = ["Ashley Mannix "] edition = "2021" license = "Apache-2.0 OR MIT" @@ -12,5 +12,5 @@ keywords = ["serialization", "no_std"] categories = ["encoding", "no-std"] [dependencies.sval] -version = "2.3.0" +version = "2.3.1" path = "../" diff --git a/fmt/Cargo.toml b/fmt/Cargo.toml index 5903bd69..9f8eea85 100644 --- a/fmt/Cargo.toml +++ b/fmt/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "sval_fmt" -version = "2.3.0" +version = "2.3.1" authors = ["Ashley Mannix "] edition = "2021" license = "Apache-2.0 OR MIT" @@ -19,7 +19,7 @@ std = ["alloc", "sval/std"] alloc = ["sval/alloc"] [dependencies.sval] -version = "2.3.0" +version = "2.3.1" path = "../" [dependencies.ryu] diff --git a/json/Cargo.toml b/json/Cargo.toml index 72631c29..a3dc241e 100644 --- a/json/Cargo.toml +++ b/json/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "sval_json" -version = "2.3.0" +version = "2.3.1" authors = ["Ashley Mannix "] edition = "2021" license = "Apache-2.0 OR MIT" @@ -19,7 +19,7 @@ std = ["alloc", "sval/std"] alloc = ["sval/alloc"] [dependencies.sval] -version = "2.3.0" +version = "2.3.1" path = "../" [dependencies.ryu] diff --git a/ref/Cargo.toml b/ref/Cargo.toml index 060946a9..ab50493a 100644 --- a/ref/Cargo.toml +++ b/ref/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "sval_ref" -version = "2.3.0" +version = "2.3.1" authors = ["Ashley Mannix "] edition = "2021" license = "Apache-2.0 OR MIT" @@ -16,9 +16,9 @@ std = ["alloc", "sval/std"] alloc = ["sval/alloc"] [dependencies.sval] -version = "2.3.0" +version = "2.3.1" path = "../" [dev-dependencies.sval_test] -version = "2.3.0" +version = "2.3.1" path = "../test" diff --git a/serde/Cargo.toml b/serde/Cargo.toml index 63c946d0..f60b698b 100644 --- a/serde/Cargo.toml +++ b/serde/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "sval_serde" -version = "2.3.0" +version = "2.3.1" authors = ["Ashley Mannix "] edition = "2021" license = "Apache-2.0 OR MIT" @@ -19,16 +19,16 @@ std = ["alloc", "serde/std", "sval/std", "sval_buffer/std"] alloc = ["serde/alloc", "sval/alloc", "sval_buffer/alloc"] [dependencies.sval] -version = "2.3.0" +version = "2.3.1" path = "../" [dependencies.sval_buffer] -version = "2.3.0" +version = "2.3.1" path = "../buffer" default-features = false [dependencies.sval_fmt] -version = "2.3.0" +version = "2.3.1" path = "../fmt" [dependencies.serde] diff --git a/src/lib.rs b/src/lib.rs index 5e599068..5ec68c34 100644 --- a/src/lib.rs +++ b/src/lib.rs @@ -16,7 +16,7 @@ Add `sval` to your `Cargo.toml`: ```toml [dependencies.sval] -version = "2.3.0" +version = "2.3.1" ``` By default, `sval` doesn't depend on Rust's standard library or integrate @@ -24,7 +24,7 @@ with its collection types. To include them, add the `alloc` or `std` features: ```toml [dependencies.sval] -version = "2.3.0" +version = "2.3.1" features = ["std"] ``` diff --git a/test/Cargo.toml b/test/Cargo.toml index f26c7262..561a6ed6 100644 --- a/test/Cargo.toml +++ b/test/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "sval_test" -version = "2.3.0" +version = "2.3.1" authors = ["Ashley Mannix "] edition = "2021" license = "Apache-2.0 OR MIT" @@ -12,10 +12,10 @@ keywords = ["serialization", "no_std"] categories = ["encoding", "no-std"] [dependencies.sval] -version = "2.3.0" +version = "2.3.1" path = "../" features = ["std"] [dev-dependencies.sval_dynamic] -version = "2.3.0" +version = "2.3.1" path = "../dynamic"