Skip to content

Commit 427dc25

Browse files
committed
Allow any rusqlite >= 0.30 dependencies
1 parent c444721 commit 427dc25

File tree

2 files changed

+6
-6
lines changed

2 files changed

+6
-6
lines changed

Cargo.lock

+3-3
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

Cargo.toml

+3-3
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
[package]
22
name = "sqlite-compressions"
3-
version = "0.2.5" # This value is also used in the README.md
3+
version = "0.2.6" # This value is also used in the README.md
44
description = "Compression, decompression, and testing functions for SQLite: gzip, brotli, ..."
55
authors = ["Yuri Astrakhan <[email protected]>"]
66
repository = "https://github.com/nyurik/sqlite-compressions"
@@ -41,8 +41,8 @@ brotli = ["dep:brotli"]
4141
[dependencies]
4242
brotli = { version = "3", optional = true }
4343
flate2 = { version = "1", optional = true }
44-
log = { version = "0.4", optional = true }
45-
rusqlite = { version = "0.31", features = ["functions"] }
44+
log = { version = "0.4.4", optional = true }
45+
rusqlite = { version = ">=0.30", features = ["functions"] }
4646

4747
[dev-dependencies]
4848
cargo-husky = { version = "1", features = ["user-hooks"], default-features = false }

0 commit comments

Comments
 (0)