Skip to content

Commit 0536791

Browse files
committed
Bump simd-json
Signed-off-by: Heinz N. Gies <heinz@licenser.net>
1 parent e03ad32 commit 0536791

3 files changed

Lines changed: 6 additions & 6 deletions

File tree

Cargo.toml

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
[package]
22
name = "simd-json-derive"
3-
version = "0.16.1"
3+
version = "0.17.0"
44
authors = ["Heinz N. Gies <heinz@licenser.net>"]
55
edition = "2021"
66
license = "Apache-2.0/MIT"
@@ -20,12 +20,12 @@ members = ["simd-json-derive-int"]
2020
# See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html
2121

2222
[dependencies]
23-
simd-json-derive-int = { path = "./simd-json-derive-int", version = "0.16.0" }
23+
simd-json-derive-int = { path = "./simd-json-derive-int", version = "0.17.0" }
2424
value-trait = { version = "0.11.0" }
2525
itoa = "1"
2626
ryu = "1"
2727
chrono = { version = "0.4", optional = true }
28-
simd-json = { version = "0.15.0" }
28+
simd-json = { version = "0.16.0" }
2929
heap-array = { version = "0.1.1", optional = true }
3030
thiserror = "2.0"
3131

examples/untagged.rs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -18,7 +18,7 @@ enum Response<'de> {
1818
Error(ErrorResponse<'de>),
1919
}
2020

21-
fn parse(data: &mut [u8]) -> Result<Response, Box<dyn std::error::Error>> {
21+
fn parse<'de>(data: &'de mut [u8]) -> Result<Response<'de>, Box<dyn std::error::Error>> {
2222
let tape = simd_json::to_tape(data)?;
2323

2424
if let [Node::Object { len: 1, count: 2 }, Node::String("error"), Node::String(error)] =

simd-json-derive-int/Cargo.toml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
[package]
22
name = "simd-json-derive-int"
3-
version = "0.16.0"
3+
version = "0.17.0"
44
authors = ["Heinz N. Gies <heinz@licenser.net>"]
55
edition = "2021"
66
license = "Apache-2.0/MIT"
@@ -15,7 +15,7 @@ proc-macro = true
1515
proc-macro2 = "1.0"
1616
quote = "1.0"
1717
syn = { version = "2.0", features = ["visit", "extra-traits"] }
18-
simd-json = { version = "0.15.0" }
18+
simd-json = { version = "0.16.0" }
1919
thiserror = "2"
2020

2121

0 commit comments

Comments
 (0)