captcha/Cargo.toml

15 lines
315 B
TOML
Raw Permalink Normal View History

2023-07-14 02:50:21 +00:00
[package]
name = "captcha"
version = "0.1.0"
edition = "2021"
2023-07-14 16:54:05 +00:00
license = "GPL-3.0"
2023-07-14 02:50:21 +00:00
[dependencies]
tokio = { version = "1.29", features = ["rt-multi-thread", "macros", "process"] }
serde = { version = "1.0", features = ["serde_derive"] }
2023-07-14 16:54:05 +00:00
axum = "0.6"
2023-07-14 02:50:21 +00:00
rand = "0.8"
lazy_static = "1.4"
2023-07-14 03:35:14 +00:00
log = "0.4"
env_logger = "0.10"