diff --git a/Cargo.toml b/Cargo.toml index 1bbc64c5..23f570b7 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "sval" -version = "2.0.2" +version = "2.0.3" authors = ["Ashley Mannix "] edition = "2021" license = "Apache-2.0 OR MIT" diff --git a/buffer/Cargo.toml b/buffer/Cargo.toml index 9b77b38d..53f9b2b7 100644 --- a/buffer/Cargo.toml +++ b/buffer/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "sval_buffer" -version = "2.0.2" +version = "2.0.3" authors = ["Ashley Mannix "] edition = "2021" license = "Apache-2.0 OR MIT" @@ -20,13 +20,13 @@ std = ["alloc", "sval/std"] alloc = ["sval/alloc"] [dependencies.sval] -version = "2.0.2" +version = "2.0.3" path = "../" [dev-dependencies.sval_derive] -version = "2.0.2" +version = "2.0.3" path = "../derive" [dev-dependencies.sval_test] -version = "2.0.2" +version = "2.0.3" path = "../test" diff --git a/derive/Cargo.toml b/derive/Cargo.toml index becb3d1c..40c592d3 100644 --- a/derive/Cargo.toml +++ b/derive/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "sval_derive" -version = "2.0.2" +version = "2.0.3" authors = ["Ashley Mannix "] edition = "2021" license = "Apache-2.0 OR MIT" diff --git a/dynamic/Cargo.toml b/dynamic/Cargo.toml index b84f698d..a33018b7 100644 --- a/dynamic/Cargo.toml +++ b/dynamic/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "sval_dynamic" -version = "2.0.2" +version = "2.0.3" 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.0.2" +version = "2.0.3" path = "../" diff --git a/fmt/Cargo.toml b/fmt/Cargo.toml index 23e76196..a26b24ef 100644 --- a/fmt/Cargo.toml +++ b/fmt/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "sval_fmt" -version = "2.0.2" +version = "2.0.3" 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.0.2" +version = "2.0.3" path = "../" [dependencies.ryu] diff --git a/json/Cargo.toml b/json/Cargo.toml index 2707f681..bf3caa87 100644 --- a/json/Cargo.toml +++ b/json/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "sval_json" -version = "2.0.2" +version = "2.0.3" 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.0.2" +version = "2.0.3" path = "../" [dependencies.ryu] diff --git a/serde/Cargo.toml b/serde/Cargo.toml index 6c7fbc43..2d39a574 100644 --- a/serde/Cargo.toml +++ b/serde/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "sval_serde" -version = "2.0.2" +version = "2.0.3" 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.0.2" +version = "2.0.3" path = "../" [dependencies.sval_buffer] -version = "2.0.2" +version = "2.0.3" path = "../buffer" default-features = false [dependencies.sval_fmt] -version = "2.0.2" +version = "2.0.3" path = "../fmt" [dependencies.serde] diff --git a/src/lib.rs b/src/lib.rs index 5cdeeedb..07af4645 100644 --- a/src/lib.rs +++ b/src/lib.rs @@ -16,7 +16,7 @@ Add `sval` to your `Cargo.toml`: ```toml [dependencies.sval] -version = "2.0.2" +version = "2.0.3" ``` 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.0.2" +version = "2.0.3" features = ["std"] ``` diff --git a/test/Cargo.toml b/test/Cargo.toml index f1b95554..a7a5d0b9 100644 --- a/test/Cargo.toml +++ b/test/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "sval_test" -version = "2.0.2" +version = "2.0.3" 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.0.2" +version = "2.0.3" path = "../" features = ["std"] [dev-dependencies.sval_dynamic] -version = "2.0.2" +version = "2.0.3" path = "../dynamic"