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