Skip to content

Commit

Permalink
attempt to satisfy clippy
Browse files Browse the repository at this point in the history
  • Loading branch information
samansmink committed Aug 27, 2024
1 parent a41fdcc commit 305273f
Showing 1 changed file with 9 additions and 1 deletion.
10 changes: 9 additions & 1 deletion crates/duckdb/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -32,7 +32,10 @@ extensions-full = ["json", "parquet", "vtab-full"]
buildtime_bindgen = ["libduckdb-sys/buildtime_bindgen"]
modern-full = ["chrono", "serde_json", "url", "r2d2", "uuid", "polars"]
polars = ["dep:polars"]
time = []
# FIXME: These were added to make clippy happy: these features appear unused and should perhaps be removed
time = ["time"]
column_decltype = []
extra_check = []

[dependencies]
libduckdb-sys = { workspace = true }
Expand All @@ -58,6 +61,11 @@ num = { workspace = true, features = ["std"], optional = true }
duckdb-loadable-macros = { workspace = true, optional = true }
polars = { workspace = true, features = ["dtype-full"], optional = true }
num-integer = { workspace = true }
time = { version = "0.3.36", features = [
"formatting",
"macros",
"parsing",
], optional = true }

[dev-dependencies]
doc-comment = { workspace = true }
Expand Down

0 comments on commit 305273f

Please sign in to comment.