cli/Cargo.toml

21 lines
691 B
TOML
Raw Normal View History

2021-03-09 15:51:11 +05:30
[package]
name = "mcaptcha-cli"
description = "CLI tool to solve mCaptcha"
2023-10-27 03:41:31 +05:30
version = "0.3.0"
repository = "https://git.batsense.net/mCaptcha/cli"
documentation = "https://mcaptcha.org/docs/"
2021-03-09 15:51:11 +05:30
authors = ["realaravinth <realaravinth@batsense.net>"]
license = "AGPL-3.0"
edition = "2021"
2021-03-09 15:51:11 +05:30
[dependencies]
mcaptcha_pow_sha256 = "0.5.0"
2023-10-23 18:21:59 +05:30
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"] }
2023-10-23 18:21:59 +05:30
serde = { version = "1.0.189", features = ["derive"] }
serde_json = "1.0.107"
url = { version = "2.4.1", features = ["serde"] }
scraper = "0.19.0"