Skip to content
This repository has been archived by the owner on Feb 14, 2021. It is now read-only.

WIP: move from serde_json to serde_json_core #59

Open
wants to merge 1 commit into
base: master
Choose a base branch
from
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
6 changes: 3 additions & 3 deletions derive/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -21,9 +21,9 @@ syn = { version = "0.11", features = ["full"] }
tiny-keccak = { version = "1", default-features = false }
byteorder = { version = "1", default-features = false }
parity-hash = { version = "1", default-features = false }
serde = "1"
serde_json = "1"
serde_derive = "1"
serde = { version = "1", default-features = false }
serde-json-core = {git = "https://github.com/Pzixel/serde-json-core.git", branch = "feature/alloc", features = ["alloc"]}
serde_derive = { version = "1", default-features = false }

[lib]
name = "pwasm_abi_derive"
Expand Down
2 changes: 1 addition & 1 deletion derive/src/lib.rs
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,7 @@ extern crate tiny_keccak;
extern crate byteorder;
extern crate parity_hash;
extern crate serde;
extern crate serde_json;
extern crate serde_json_core;
#[macro_use] extern crate serde_derive;

#[cfg(not(feature="std"))]
Expand Down
2 changes: 1 addition & 1 deletion rust-toolchain
Original file line number Diff line number Diff line change
@@ -1 +1 @@
nightly-2018-07-08
nightly-2018-06-28