mCaptcha-cache/Cargo.toml
realaravinth be961398bd
tests
2021-06-05 13:57:40 +05:30

27 lines
679 B
TOML

[package]
name = "mcaptcha-cache"
description = "mCaptcha Redis module that implements leaky bucket algorithm"
version = "0.1.0"
authors = ["realaravinth <realaravinth@batsense.net>"]
edition = "2018"
repository = "https://github.com/mcaptcha/cache"
homepage = "https://github.com/mcaptcha/cache"
license = "AGPLv3 or later version"
[lib]
crate-type = ["cdylib"]
name = "cache"
[dependencies]
redis-module = { version="0.17", features = ["experimental-api"]}
libc = "0.2"
serde_json = "1.0.64"
serde = {version = "1.0.126", features = ["derive"]}
lazy_static = "1.4.0"
rand = "0.8.3"
#[target.x86_64-unknown-linux-musl]
#linker = "cc"
[features]
test = ["redis-module/test"]