Relax dependencies

This commit is contained in:
Joscha 2023-03-31 20:14:42 +02:00
parent 5991ac6f2a
commit 351af3a983
2 changed files with 3 additions and 2 deletions

View file

@ -20,6 +20,7 @@ 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`
- Relaxed dependencies
## v0.1.0 - 2023-02-12 ## v0.1.0 - 2023-02-12

View file

@ -7,5 +7,5 @@ edition = "2021"
tokio = ["dep:tokio"] tokio = ["dep:tokio"]
[dependencies] [dependencies]
rusqlite = "0.28.0" rusqlite = "0.28"
tokio = { version = "1.25.0", features = ["sync"], optional = true } tokio = { version = "1.25", features = ["sync"], optional = true }