Update rusqlite

This commit is contained in:
Joscha 2023-04-01 07:43:00 +02:00
parent 3fa39f5934
commit b4cf23b727
2 changed files with 3 additions and 1 deletions

View file

@ -25,6 +25,8 @@ Procedure when bumping the version number:
`Result`s like before. `Result`s like before.
- **(breaking)** - **(breaking)**
Renamed `Action::Result` to `Action::Output` Renamed `Action::Result` to `Action::Output`
- **(breaking)**
Bumped `rusqlite` dependency from `0.28` to `0.29`
- Relaxed dependencies - Relaxed dependencies
## v0.1.0 - 2023-02-12 ## v0.1.0 - 2023-02-12

View file

@ -8,6 +8,6 @@ serde = ["dep:serde"]
tokio = ["dep:tokio"] tokio = ["dep:tokio"]
[dependencies] [dependencies]
rusqlite = "0.28" rusqlite = "0.29"
serde = { version = "1.0", optional = true } serde = { version = "1.0", optional = true }
tokio = { version = "1.25", features = ["sync"], optional = true } tokio = { version = "1.25", features = ["sync"], optional = true }