bump protoc-rust version to ^2.0.2

This commit is contained in:
Ding Xiang Fei
2018-06-18 16:38:13 +08:00
committed by Romain Ruetschi
parent e1c6c79f91
commit c0b013b2bf
3 changed files with 3 additions and 1 deletions

View File

@ -24,7 +24,7 @@ serde = { version = "^1.0.55", optional = true }
serde_derive = { version = "^1.0.55", optional = true } serde_derive = { version = "^1.0.55", optional = true }
[build-dependencies] [build-dependencies]
protoc-rust = { version = "1.7.1", optional = true } protoc-rust = { version = "^2.0.2", optional = true }
[dev-dependencies] [dev-dependencies]
serde_json = "1.0.17" serde_json = "1.0.17"

View File

@ -26,6 +26,7 @@ fn build_protobuf(out_dir: &str, input: &[&str], includes: &[&str]) {
out_dir, out_dir,
input, input,
includes, includes,
customize: Default::default(),
}).expect("protoc"); }).expect("protoc");
} }

View File

@ -1,3 +1,4 @@
#[allow(missing_debug_implementations)]
mod proof; mod proof;
use ring::digest::Algorithm; use ring::digest::Algorithm;