File tree Expand file tree Collapse file tree 3 files changed +8
-3
lines changed Expand file tree Collapse file tree 3 files changed +8
-3
lines changed Original file line number Diff line number Diff line change @@ -6,10 +6,14 @@ The format is based on [Keep a Changelog](http://keepachangelog.com/)
6
6
and this project adheres to [ Semantic Versioning] ( http://semver.org/ ) .
7
7
8
8
## [ Unreleased]
9
+ ### Added
10
+ - ` heapless ` is now publicly exported
11
+ - Added new ` serialize_bytes ` method
12
+
9
13
### Changed
10
14
- Floating point numbers terminated by EOF may now be deserialized
11
15
- [ ryu] ( https://github.com/dtolnay/ryu ) is used to serialize ` f32 ` and ` f64 `
12
- - Added missing implementation for ` serialize_bytes ` method
16
+ - [ breaking-change ] Heapless dependency updated to 0.6.1
13
17
14
18
## [ v0.2.0] - 2020-12-11
15
19
### Added
@@ -38,4 +42,3 @@ Initial release
38
42
[ Unreleased ] : https://github.com/rust-embedded-community/serde-json-core/compare/v0.2.0...HEAD
39
43
[ v0.2.0 ] : https://github.com/rust-embedded-community/serde-json-core/compare/v0.1.0...v0.2.0
40
44
[ v0.1.0 ] : https://github.com/rust-embedded-community/serde-json-core/releases/tag/v0.1.0
41
-
Original file line number Diff line number Diff line change @@ -12,7 +12,7 @@ repository = "https://github.com/rust-embedded-community/serde-json-core"
12
12
version = " 0.2.0"
13
13
14
14
[dependencies ]
15
- heapless = " 0.5.6 "
15
+ heapless = " 0.6.1 "
16
16
ryu = " 1.0.5"
17
17
18
18
[dependencies .serde ]
Original file line number Diff line number Diff line change @@ -67,6 +67,8 @@ pub use self::de::{from_slice, from_str};
67
67
#[ doc( inline) ]
68
68
pub use self :: ser:: { to_slice, to_string, to_vec} ;
69
69
70
+ pub use heapless;
71
+
70
72
#[ allow( deprecated) ]
71
73
unsafe fn uninitialized < T > ( ) -> T {
72
74
core:: mem:: uninitialized ( )
You can’t perform that action at this time.
0 commit comments