You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Note: Using the main branch of duckdb-rs means you'll get the latest Rust bindings and features, but you'll still be using whatever version of DuckDB core is bundled with that commit (when using the `bundled` feature).
152
+
122
153
## Notes on building duckdb and libduckdb-sys
123
154
124
155
`libduckdb-sys` is a separate crate from `duckdb-rs` that provides the Rust
@@ -142,15 +173,15 @@ You can adjust this behavior in a number of ways:
142
173
143
174
```toml
144
175
[dependencies]
145
-
duckdb = { version = "1.3.2", features = ["bundled"] }
176
+
duckdb = { version = "1.4.1", features = ["bundled"] }
146
177
```
147
178
148
179
2. 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`.
0 commit comments