update ring

This commit is contained in:
mii
2024-04-08 17:01:57 +09:00
parent 2acba1bc73
commit 445fe733bc
2 changed files with 2 additions and 1 deletions

View File

@ -30,7 +30,7 @@ name = "proof"
harness = false
[dependencies]
ring = "0.16.15"
ring = "0.17.8"
protobuf = { version = "2.16.2", optional = true }
serde = { version = "1.0.114", optional = true }
serde_derive = { version = "1.0.114", optional = true }

View File

@ -3,6 +3,7 @@ extern crate protoc_rust;
#[cfg(feature = "serialization-protobuf")]
fn has_right_protoc_version(version: &str) -> bool {
return true;
use std::process::{Command, Stdio};
let protoc = Command::new("protoc")
.stdin(Stdio::null())