Bump deps and add serde_bytes support

This commit is contained in:
Jonathan Turner
2019-07-16 06:34:44 +12:00
parent 59e3ca69f3
commit ae4d3ab4cf
3 changed files with 65 additions and 44 deletions

View File

@ -175,6 +175,7 @@ impl Block {
pub enum Value {
Primitive(Primitive),
Object(crate::object::Dictionary),
#[serde(with = "serde_bytes")]
Binary(Vec<u8>),
List(Vec<Spanned<Value>>),
#[allow(unused)]