Skip to content

Commit

Permalink
Allow any rusqlite >= 0.30 dependencies (#25)
Browse files Browse the repository at this point in the history
  • Loading branch information
nyurik committed Mar 21, 2024
1 parent 0e37461 commit 8f2ef82
Show file tree
Hide file tree
Showing 2 changed files with 8 additions and 6 deletions.
6 changes: 3 additions & 3 deletions Cargo.lock

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

8 changes: 5 additions & 3 deletions Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[package]
name = "sqlite-hashes"
version = "0.7.0" # This value is also used in the README.md
version = "0.7.1" # This value is also used in the README.md
description = "Hashing functions for SQLite with aggregation support: MD5, SHA1, SHA256, SHA512, FNV-1a, xxHash"
authors = ["Yuri Astrakhan <YuriAstrakhan@gmail.com>"]
repository = "https://github.com/nyurik/sqlite-hashes"
Expand Down Expand Up @@ -58,8 +58,10 @@ xxhash = ["dep:noncrypto-digests", "noncrypto-digests?/xxh3", "noncrypto-digests

[dependencies]
hex = { version = "0.4", optional = true }
log = { version = "0.4", optional = true }
rusqlite = { version = "0.31", features = ["functions"] }
log = { version = "0.4.4", optional = true }

# There are multiple versions that could work, but sqlx requires a specific one, so don't limit it here
rusqlite = { version = ">=0.30", features = ["functions"] }

# Digest and all hashing algorithms are using the same crates internally, so should be kept in sync
digest = "0.10.7"
Expand Down

0 comments on commit 8f2ef82

Please sign in to comment.