captcha/Cargo.toml

14 lines
457 B
TOML

[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"