From 31910e5b098e94646f1087cfb2910590933556f0 Mon Sep 17 00:00:00 2001 From: Luca Giussani Date: Thu, 26 Sep 2024 10:15:03 +0200 Subject: [PATCH] fix: enable snafu/std --- Cargo.toml | 2 +- crates/proof-of-sql/Cargo.toml | 3 +-- 2 files changed, 2 insertions(+), 3 deletions(-) diff --git a/Cargo.toml b/Cargo.toml index 9945ce97a..5b1b367cc 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -54,7 +54,7 @@ rand_core = { version = "0.6", default-features = false } rayon = { version = "1.5" } serde = { version = "1", default-features = false } serde_json = { version = "1" } -snafu = { version = "0.8.4", default-features = false } +snafu = { version = "0.8.4", default-features = false, features = ["std"] } tiny-keccak = { version = "2.0.2", features = [ "keccak" ] } # tokio = { version = "1.39.3" } tracing = { version = "0.1.36" } diff --git a/crates/proof-of-sql/Cargo.toml b/crates/proof-of-sql/Cargo.toml index c2ba04a2c..ed2f0db60 100644 --- a/crates/proof-of-sql/Cargo.toml +++ b/crates/proof-of-sql/Cargo.toml @@ -75,7 +75,6 @@ development = ["arrow-csv"] default = ["arrow", "blitzar", "rayon"] arrow = ["dep:arrow"] test = ["dep:rand"] -std = ["snafu/std"] [lints] workspace = true @@ -86,7 +85,7 @@ required-features = [ "blitzar", "test" ] [[example]] name = "posql_db" -required-features = [ "arrow", "blitzar", "std" ] +required-features = [ "arrow", "blitzar" ] [[bench]] name = "posql_benches"