Skip to content

Commit

Permalink
Update dep
Browse files Browse the repository at this point in the history
  • Loading branch information
kenf1 committed Oct 28, 2024
1 parent 1517092 commit 114e3ed
Show file tree
Hide file tree
Showing 4 changed files with 16 additions and 12 deletions.
3 changes: 2 additions & 1 deletion .gitignore
Original file line number Diff line number Diff line change
Expand Up @@ -18,4 +18,5 @@ Cargo.lock
main

#Misc
.DS_Store
.DS_Store
Dev/
6 changes: 3 additions & 3 deletions Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@
name = "thepkg"
authors = ["kenf1"]
repository = "https://github.com/kenf1/thepkg"
description = "Collection of KF's commonly-used Rust tools/functions."
description = "The Package: Rust edition"
license = "GNU General Public License v3.0"

version = "0.4.0"
Expand Down Expand Up @@ -35,6 +35,6 @@ bardecoder = { version = "0.5.0", optional = true }
csv = { version = "1.3.0", optional = true }
dotenv = { version = "0.15.0", optional = true }
image = { version = "0.24.9", optional = true }
polars = { version = "0.41.2", optional = true, features = ["lazy"] }
reqwest = { version = "0.12.2", optional = true, features = ["blocking"] }
polars = { version = "0.44.0", optional = true, features = ["lazy"] }
reqwest = { version = "0.12.8", optional = true, features = ["blocking"] }
select = { version = "0.6.0", optional = true }
2 changes: 1 addition & 1 deletion Dockerfile
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
FROM rust:1.78-slim
FROM rust:1.81-slim

RUN apt-get update && apt-get install -y \
build-essential \
Expand Down
17 changes: 10 additions & 7 deletions Makefile
Original file line number Diff line number Diff line change
@@ -1,13 +1,16 @@
test_crypt:
help:
@awk 'BEGIN {FS = ":.*##"; printf "\nUsage:\n make \033[36m<target>\033[0m\n"} \
/^[a-zA-Z0-9_-]+:.*?##/ { printf " \033[36m%-15s\033[0m %s\n", $$1, $$2 } \
/^##@/ { printf "\n\033[1m%s\033[0m\n", substr($$0, 5) }' $(MAKEFILE_LIST)

test_crypt: ##Test crypt features flag
cargo test --features "crypt"

test_io:
test_io: ##Test io features flag
cargo test --features "io"

test_qr:
test_qr: ##Test qr features flag
cargo test --features "qr"

test_webscrape:
cargo test --features "webscrape"

# all: test_crypt test_io test_qr test_webscrape
test_webscrape: ##Test webscrape features flag
cargo test --features "webscrape"

0 comments on commit 114e3ed

Please sign in to comment.