[ci] Update the stable version to 1.56

This commit is contained in:
Alekos Filini
2021-10-21 18:35:03 +02:00
parent 59f795f176
commit a348dbdcfe
8 changed files with 16 additions and 16 deletions

View File

@@ -70,7 +70,7 @@ fn main() -> Result<(), Box<dyn Error>> {
let policy_str = matches.value_of("POLICY").unwrap();
info!("Compiling policy: {}", policy_str);
let policy = Concrete::<String>::from_str(&policy_str)?;
let policy = Concrete::<String>::from_str(policy_str)?;
let descriptor = match matches.value_of("TYPE").unwrap() {
"sh" => Descriptor::new_sh(policy.compile()?)?,