diff --git a/CHANGELOG.md b/CHANGELOG.md index d0d567f..e099811 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -13,6 +13,10 @@ Procedure when bumping the version number: ## Unreleased +### Changed +- **(breaking)** + Bumped `rusqlite` dependency from `0.29` to `0.30` + ## v0.2.0 - 2023-05-14 ### Added diff --git a/Cargo.toml b/Cargo.toml index 59a9616..94e6911 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -8,6 +8,6 @@ serde = ["dep:serde"] tokio = ["dep:tokio"] [dependencies] -rusqlite = "0.29.0" -serde = { version = "1.0.163", optional = true } -tokio = { version = "1.28.1", features = ["sync"], optional = true } +rusqlite = "0.30.0" +serde = { version = "1.0.193", optional = true } +tokio = { version = "1.35.1", features = ["sync"], optional = true }