Skip to content

Commit

Permalink
fix: enable snafu/std
Browse files Browse the repository at this point in the history
  • Loading branch information
lgiussan committed Sep 26, 2024
1 parent f891e33 commit 31910e5
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 3 deletions.
2 changes: 1 addition & 1 deletion Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -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" }
Expand Down
3 changes: 1 addition & 2 deletions crates/proof-of-sql/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -75,7 +75,6 @@ development = ["arrow-csv"]
default = ["arrow", "blitzar", "rayon"]
arrow = ["dep:arrow"]
test = ["dep:rand"]
std = ["snafu/std"]

[lints]
workspace = true
Expand All @@ -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"
Expand Down

0 comments on commit 31910e5

Please sign in to comment.