cli/Cargo.toml
2024-06-07 23:13:01 +05:30

20 lines
691 B
TOML

[package]
name = "mcaptcha-cli"
description = "CLI tool to solve mCaptcha"
version = "0.3.0"
repository = "https://git.batsense.net/mCaptcha/cli"
documentation = "https://mcaptcha.org/docs/"
authors = ["realaravinth <realaravinth@batsense.net>"]
license = "AGPL-3.0"
edition = "2021"
[dependencies]
mcaptcha_pow_sha256 = "0.5.0"
clap = { version = "4.4", features = ["derive"] }
tokio = { version = "1.33", features = ["rt", "rt-multi-thread", "macros"] }
reqwest = { version = "0.12.0", features = ["json", "gzip", "native-tls-vendored"] }
serde = { version = "1.0.189", features = ["derive"] }
serde_json = "1.0.107"
url = { version = "2.4.1", features = ["serde"] }
scraper = "0.19.0"