From f453608cdcb1a89cf9c0116ddebbb507be5b5163 Mon Sep 17 00:00:00 2001 From: Paul Campbell Date: Wed, 8 May 2024 08:28:54 +0100 Subject: [PATCH] build(cargo): don't specify patch versions --- Cargo.toml | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/Cargo.toml b/Cargo.toml index 01395b9..e74e891 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -6,13 +6,13 @@ edition = "2021" # See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html [dependencies] -atom_syndication = "0.12.2" +atom_syndication = "0.12" reqwest = { version = "0.12", features = ["json", "blocking"] } scraper = "0.19" -clap = {version = "4.5", features = ["derive"]} +clap = { version = "4.5", features = ["derive"] } bytes = "1.6" -anyhow = "1.0.82" +anyhow = "1.0" [dev-dependencies] -tempfile = "3.10.1" +tempfile = "3.10" pretty_assertions = "1.4"