Skip to content

Commit

Permalink
chore: update dependencies and add homepage to Cargo.toml
Browse files Browse the repository at this point in the history
  • Loading branch information
Kremilly committed Jan 9, 2025
1 parent 89528c9 commit eb74835
Showing 1 changed file with 19 additions and 18 deletions.
37 changes: 19 additions & 18 deletions Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -9,43 +9,44 @@ keywords = ["pdf batch", "batch downloads", "markdown to pdf", "pdf downloader",
description = "Scimon is a tool designed for batch downloading PDF files using its own dedicated language, Monset (.mon). Monset features a very simple and quick-to-write syntax, making it easy to use."
repository = "https://github.com/Kremilly/Scimon"
documentation = "https://scimon.kremilly.com"
homepage = "https://scimon.kremilly.com"

# See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html

[dependencies]
reqwest = { version = "0.12.7", features = ["multipart", "json", "blocking"] }
tokio = { version = "1.40.0", features = ["full"] }
futures = "0.3"
url = "2.4.1"
reqwest = { version = "0.12.12", features = ["multipart", "json", "blocking"] }
tokio = { version = "1.43.0", features = ["full"] }
futures = "0.3.31"
url = "2.5.4"
is-url = "1.0.4"
mime = "0.3.13"
dotenvy = "0.15.7"
figlet-rs = "0.1.3"
colored = "2.0"
colored = "3.0.0"
dirs-next = "2.0"
clap = { version = "4.5.18", features = ["cargo", "derive"] }
indicatif = "0.17.8"
regex = "1.10.6"
once_cell = "1"
chrono = "0.4"
serde_json = "1.0.128"
serde = { version = "1.0.210", features = ["derive"] }
webbrowser = "1.0.2"
clap = { version = "4.5.25", features = ["cargo", "derive"] }
indicatif = "0.17.9"
regex = "1.11.1"
once_cell = "1.20.2"
chrono = "0.4.39"
serde_json = "1.0.135"
serde = { version = "1.0.217", features = ["derive"] }
webbrowser = "1.0.3"
pulldown-cmark = "0.12.1"
qrcode = "0.14.0"
base64 = "0.22.1"
serde_yaml = "0.9"
minify = "1.3.0"
image = "0.25.2"
image = "0.25.5"
select = "0.6.0"
headless_chrome = "1.0.15"
rand = "0.8.5"
open = "5.1.4"
open = "5.3.2"
lopdf = "0.34.0"
sha2 = "0.10.8"
zip = "2.2.0"
zip = "2.2.2"
walkdir = "2.5.0"
scraper = "0.20.0"
pdfium-render = "0.8.25"
scraper = "0.22.0"
pdfium-render = "0.8.27"
rpassword = "7.3.1"
mathjax = "0.1.1"

0 comments on commit eb74835

Please sign in to comment.