Skip to content

Commit

Permalink
Update Cargo.toml for dependencies (#216)
Browse files Browse the repository at this point in the history
Change dependencies string for duckdb
  • Loading branch information
yoonghm authored Oct 4, 2023
1 parent 80c66ee commit 0a1f3a6
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -90,9 +90,9 @@ You can adjust this behavior in a number of ways:
we will use the stable released version from [duckdb](https://github.com/duckdb/duckdb/releases).
This is probably the simplest solution to any build problems. You can enable this by adding the following in your `Cargo.toml` file:
```toml
[dependencies.duckdb]
version = "0.1"
features = ["bundled"]
[dependencies]
# Assume that version DuckDB version 0.9.0 is used.
duckdb = { version = "0.9.0", features = ["bundled"] }
```
* When linking against a DuckDB library already on the system (so *not* using any of the `bundled` features), you can set the `DUCKDB_LIB_DIR` environment variable to point to a directory containing the library. You can also set the `DUCKDB_INCLUDE_DIR` variable to point to the directory containing `duckdb.h`.
* Installing the duckdb development packages will usually be all that is required, but
Expand Down

0 comments on commit 0a1f3a6

Please sign in to comment.