feat/savestates: Add serde and bincode traits to the project

Former-commit-id: b4699586bba03b8fcfc718ea08363a7067d31e20
This commit is contained in:
Michel Heily 2020-01-16 19:49:13 +02:00
parent 0e0f1764e8
commit d887602266
2 changed files with 6 additions and 0 deletions

View file

@ -6,6 +6,8 @@ edition = "2018"
default-run= "rba-sdl2"
[dependencies]
serde = {version = "1.0.104", features = ["derive"] }
bincode = "1.2.1"
byteorder = "1"
num = "0.2.0"
num-traits = "0.2"

View file

@ -2,6 +2,10 @@
#![feature(core_intrinsics)]
#![feature(exclusive_range_pattern)]
#[macro_use]
extern crate serde;
extern crate bincode;
#[macro_use]
extern crate debug_stub_derive;