forked from Cinea4678/easy-captcha-rs
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Cargo.toml
40 lines (36 loc) · 1.19 KB
/
Cargo.toml
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
workspace = { members = ["examples/axum-tower-sessions"] }
[package]
name = "easy-captcha"
description = "The Rust implement of the Java captcha library whvcse/EasyCaptcha."
version = "0.1.3"
edition = "2021"
authors = ["Zhang Yao <[email protected]>"]
license = "MIT OR Apache-2.0"
rust-version = "1.56"
readme = "README.md"
repository = "https://github.com/Cinea4678/easy-captcha/"
homepage = "https://docs.rs/easy-captcha"
documentation = "https://docs.rs/easy-captcha"
keywords = ["captcha"]
# See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html
[features]
axum-tower-sessions = ["axum", "tower-sessions"]
[dependencies]
font-kit = "0.13.0"
rand = "0.8.5"
raqote = { version = "0.8.3", default-features = false, features = ["text"] }
rust-embed = { version = "8.2.0", features = ["debug-embed"] }
tempfile = "3.9.0"
log = "0.4.20"
parking_lot = "0.12.1"
lazy_static = "1.4.0"
png = "0.17.11"
base64 = "0.22.1"
evalexpr = "11.3.0"
gif = "0.13.1"
derive_builder = "0.20.0"
axum = {version = "0.7.4", optional = true}
tower-sessions = {version = "0.12.2", optional = true}
async-trait = { version = "0.1.77", features = [] }
axum-macros = "0.4.1"
anyhow = "1.0.79"