From 86d3cefb00a30d2e5a533ad6c78afcdaa8820d5a Mon Sep 17 00:00:00 2001 From: Michael Pfaff Date: Tue, 3 May 2022 12:03:34 -0400 Subject: [PATCH] Fix tide 0.17 version restriction --- Cargo.toml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Cargo.toml b/Cargo.toml index 9dba33c..be74ba5 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -7,7 +7,7 @@ license = "MIT OR Apache-2.0" [dependencies] nrid = { git = "https://git.pfaff.dev/michael/nrid.rs.git", tag = "v0.2.0", default-features = false } -tide = { version = ">=0.16, <=0.17", default-features = false } +tide = { version = ">=0.16, <=0.17.0-beta.1", default-features = false } tracing = "0.1" async-trait = "0.1" num_enum = "0.5"