Skip to content

Commit

Permalink
Merge pull request #263 from serde-rs/map
Browse files Browse the repository at this point in the history
Add entry API and expose map module
  • Loading branch information
oli-obk authored Feb 21, 2017
2 parents dcba3eb + a949ec0 commit ed44d41
Show file tree
Hide file tree
Showing 3 changed files with 379 additions and 42 deletions.
2 changes: 1 addition & 1 deletion json/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -20,7 +20,7 @@ preserve_order = ["linked-hash-map"]
[dependencies]
serde = "0.9.4"
num-traits = "0.1.32"
linked-hash-map = { version = "0.3", optional = true }
linked-hash-map = { version = "0.4.1", optional = true }
itoa = "0.3"
dtoa = "0.4"

Expand Down
2 changes: 1 addition & 1 deletion json/src/lib.rs
Original file line number Diff line number Diff line change
Expand Up @@ -283,9 +283,9 @@ mod macros;

pub mod de;
pub mod error;
pub mod map;
pub mod ser;
pub mod value;

mod map;
mod number;
mod read;
Loading

0 comments on commit ed44d41

Please # to comment.