From 351af3a98375edb9beccd545d0465023afbf4e12 Mon Sep 17 00:00:00 2001 From: Joscha Date: Fri, 31 Mar 2023 20:14:42 +0200 Subject: [PATCH] Relax dependencies --- CHANGELOG.md | 1 + Cargo.toml | 4 ++-- 2 files changed, 3 insertions(+), 2 deletions(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index d0faedd..b640936 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -20,6 +20,7 @@ Procedure when bumping the version number: `Result`s like before. - **(breaking)** Renamed `Action::Result` to `Action::Output` +- Relaxed dependencies ## v0.1.0 - 2023-02-12 diff --git a/Cargo.toml b/Cargo.toml index 3a3b297..81ef5c8 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -7,5 +7,5 @@ edition = "2021" tokio = ["dep:tokio"] [dependencies] -rusqlite = "0.28.0" -tokio = { version = "1.25.0", features = ["sync"], optional = true } +rusqlite = "0.28" +tokio = { version = "1.25", features = ["sync"], optional = true }