-
Notifications
You must be signed in to change notification settings - Fork 1
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Minor ver, Requre rusqlite-v0.33, MSRV, dep update (#52)
* Require v0.33 of the rusqlite dependency * Update all other dependencies * Bump minor version due to MSRV change --------- Co-authored-by: Yuri Astrakhan <[email protected]>
- Loading branch information
1 parent
dd62cf0
commit c1a6c4e
Showing
4 changed files
with
27 additions
and
54 deletions.
There are no files selected for viewing
Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.
Oops, something went wrong.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,14 +1,14 @@ | ||
[package] | ||
name = "sqlite-hashes" | ||
version = "0.7.9" # This value is also used in the README.md | ||
version = "0.8.0" # 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 <[email protected]>"] | ||
repository = "https://github.com/nyurik/sqlite-hashes" | ||
edition = "2021" | ||
license = "MIT OR Apache-2.0" | ||
keywords = ["sqlite", "rusqlite", "hash", "md5", "sha256"] | ||
categories = ["database", "cryptography"] | ||
rust-version = "1.77.2" | ||
rust-version = "1.82" | ||
|
||
[lib] | ||
name = "sqlite_hashes" | ||
|
@@ -61,8 +61,7 @@ hex = { version = "0.4", optional = true } | |
log = { version = "0.4.25", optional = true } | ||
|
||
# There are multiple versions that could work, but sqlx requires a specific one, so don't limit it here | ||
# Note that cdylib requires >= 0.32 (controlled by the lock file) | ||
rusqlite = { version = ">=0.30, <0.33", features = ["functions"] } | ||
rusqlite = { version = ">=0.33", features = ["functions"] } | ||
|
||
# Digest and all hashing algorithms are using the same crates internally, so should be kept in sync | ||
digest = "0.10.7" | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters