Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Allow any rusqlite >= 0.30 dependencies #25

Merged
merged 1 commit into from
Mar 21, 2024
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
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
Loading