Skip to content
Closed
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
17 changes: 10 additions & 7 deletions Cargo.lock

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

2 changes: 1 addition & 1 deletion ordvec-manifest/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -30,7 +30,7 @@ chrono = { version = "0.4.44", default-features = false, features = ["clock", "s
clap = { version = "4.6.1", features = ["derive"], optional = true }
hex = "0.4.3"
ordvec = { version = "0.6.0", path = ".." }
rusqlite = { version = "0.39.0", optional = true }
rusqlite = { version = "0.40.1", optional = true }

Copy link
Copy Markdown

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

P1 Badge Keep rusqlite on the Rust-1.89-compatible line

This reintroduces the dependency line the parent release notes explicitly reverted: CHANGELOG.md says rusqlite was returned to 0.39 because 0.40's build dependency uses a library feature unavailable on Rust 1.89, and the CI MSRV job pins toolchain 1.89.0 while running cargo test -p ordvec-manifest --all-features. With this bump, the sqlite/sqlite-bundled feature path will fail for the declared MSRV and for downstream Rust 1.89 users; keep the dependency on the compatible 0.39 line unless the MSRV is raised and documented.

Useful? React with 👍 / 👎.

serde = { version = "1.0", features = ["derive"] }
serde_json = { version = "1.0", features = ["arbitrary_precision"] }
sha2 = "0.11.0"
Expand Down
Loading