captcha/Cargo.toml

16 lines
489 B
TOML
Raw Normal View History

2023-07-14 02:50:21 +00:00
[package]
name = "captcha"
version = "0.1.0"
edition = "2021"
# See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html
[dependencies]
tokio = { version = "1.29", features = ["rt-multi-thread", "macros", "process"] }
serde = { version = "1.0", features = ["serde_derive"] }
axum = { version = "0.6", features = ["tokio", "query", "form", "json", "http1"], default-features = false }
rand = "0.8"
lazy_static = "1.4"
2023-07-14 03:35:14 +00:00
log = "0.4"
env_logger = "0.10"