Skip to content

Commit a2cb5c4

Browse files
authored
Bump libsqlite3-sys to support version 0.32 as well (#221)
This commit increases the maximal supported libsqlite3-sys version to include 0.32 as well. It also fixes a warning about a unknown cfg by just adding it to the allow list as we set that via the build script. - [x] I agree to follow the project's [code of conduct](https://github.com/georust/.github/blob/main/CODE_OF_CONDUCT.md). - [x] I added an entry to the project's change log file if knowledge of this change could be valuable to users. - Usually called `CHANGES.md` or `CHANGELOG.md` - Prefix changelog entries for breaking changes with "BREAKING: " ---
1 parent e85b746 commit a2cb5c4

File tree

2 files changed

+5
-1
lines changed

2 files changed

+5
-1
lines changed

CHANGES.md

+1
Original file line numberDiff line numberDiff line change
@@ -2,6 +2,7 @@
22

33
- Update build status badge
44
- Update MSRV to 1.81
5+
- Add support for building with libsqlite3-sys 0.32
56

67
## 0.28.0 - 2024-12-20
78

proj-sys/Cargo.toml

+4-1
Original file line numberDiff line numberDiff line change
@@ -12,7 +12,7 @@ links = "proj"
1212
rust-version = "1.70"
1313

1414
[dependencies]
15-
libsqlite3-sys = ">=0.28,<0.32"
15+
libsqlite3-sys = ">=0.28,<0.33"
1616
link-cplusplus = "1.0.6"
1717

1818
[build-dependencies]
@@ -33,3 +33,6 @@ buildtime_bindgen = ["dep:bindgen"]
3333

3434
[package.metadata.docs.rs]
3535
features = [ "nobuild" ] # This feature will be enabled during the docs.rs build
36+
37+
[lints.rust]
38+
unexpected_cfgs = { level = "warn", check-cfg = ['cfg(bundled_build)'] }

0 commit comments

Comments
 (0)