Skip to content

Commit

Permalink
add warnings add correct feature dependency
Browse files Browse the repository at this point in the history
  • Loading branch information
samansmink committed Oct 7, 2024
1 parent 0034648 commit 1a96802
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 1 deletion.
4 changes: 3 additions & 1 deletion crates/duckdb/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -35,6 +35,8 @@ polars = ["dep:polars"]
# FIXME: These were added to make clippy happy: these features appear unused and should perhaps be removed
column_decltype = []
extra_check = []
# Warning: experimental feature
loadable-extension = ["libduckdb-sys/loadable-extension"]

[dependencies]
libduckdb-sys = { workspace = true }
Expand Down Expand Up @@ -97,4 +99,4 @@ required-features = ["vtab-loadable"]
[[example]]
name = "hello-ext-capi"
crate-type = ["cdylib"]
required-features = ["vtab-loadable"]
required-features = ["vtab-loadable", "loadable-extension"]
1 change: 1 addition & 0 deletions crates/libduckdb-sys/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -23,6 +23,7 @@ json = ["bundled"]
parquet = ["bundled"]
extensions-full = ["json", "parquet"]
winduckdb = []
# Warning: experimental feature
loadable-extension = ["prettyplease", "quote", "syn"]

[dependencies]
Expand Down

0 comments on commit 1a96802

Please sign in to comment.