From 5318f59dc5b3ef70afa3af51fe067f678fe3a822 Mon Sep 17 00:00:00 2001 From: kenf1 <103538771+kenf1@users.noreply.github.com> Date: Thu, 28 Nov 2024 10:30:45 -0600 Subject: [PATCH] Updates --- Cargo.toml | 2 +- Makefile | 5 ++++- 2 files changed, 5 insertions(+), 2 deletions(-) diff --git a/Cargo.toml b/Cargo.toml index 00e45f2..840f057 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -32,7 +32,7 @@ webscrape = ["reqwest/blocking", "select"] [dependencies] bardecoder = { version = "0.5.0", optional = true } -csv = { version = "1.3.0", optional = true } +csv = { version = "1.3.1", optional = true } dotenv = { version = "0.15.0", optional = true } image = { version = "0.24.9", optional = true } polars = { version = "0.44.2", optional = true, features = ["lazy"] } diff --git a/Makefile b/Makefile index e9e1613..653ed70 100644 --- a/Makefile +++ b/Makefile @@ -13,4 +13,7 @@ test_qr: ##Test qr features flag cargo test --features "qr" test_webscrape: ##Test webscrape features flag - cargo test --features "webscrape" \ No newline at end of file + cargo test --features "webscrape" + +update_toml: ##Update dependencies in Cargo.toml + cargo update --manifest-path Cargo.toml \ No newline at end of file