Skip to content

Commit e36d043

Browse files
authored
Merge pull request #41 from PSeitz/export_num
reexport Number
2 parents 6481614 + 9aab906 commit e36d043

3 files changed

Lines changed: 8 additions & 1 deletion

File tree

CHANGELOG.md

Lines changed: 6 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,9 @@
1+
0.9.0 (2025-09-30)
2+
==================
3+
reexport `Number`
4+
Add a fmt::Display impl for Number https://github.com/PSeitz/serde_json_borrow/pull/39 (Thanks @quodlibetor)
5+
feat: Add get_key_value_at method for O(1) lookup in ObjectAsVec https://github.com/PSeitz/serde_json_borrow/pull/40 (Thanks @quodlibetor)
6+
17
0.8.0 (2025-06-15)
28
==================
39
perf: add CowStr type to be able to use Cow::Borrowed on keys https://github.com/PSeitz/serde_json_borrow/pull/32 (Thanks @jszwec)

Cargo.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@ name = "serde_json_borrow"
33
categories = ["parsing", "parser-implementations", "encoding"]
44
authors = ["Pascal Seitz <pascal.seitz@gmail.com>"]
55
description = "Provides JSON deserialization into a borrowed DOM"
6-
version = "0.8.0"
6+
version = "0.8.1"
77
edition = "2021"
88
license = "MIT"
99
keywords = ["JSON", "serde", "deserialization", "ref", "borrowed"]

src/lib.rs

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -88,6 +88,7 @@ mod value;
8888
#[cfg(feature = "cowkeys")]
8989
mod cowstr;
9090

91+
pub use num::Number;
9192
pub use object_vec::{KeyStrType, ObjectAsVec, ObjectAsVec as Map, ObjectEntry};
9293
pub use ownedvalue::OwnedValue;
9394
pub use value::Value;

0 commit comments

Comments
 (0)