mirror of
https://github.com/mCaptcha/mCaptcha.git
synced 2024-11-23 01:45:50 +03:00
24 lines
773 B
TOML
24 lines
773 B
TOML
[package]
|
|
name = "db-core"
|
|
version = "0.1.0"
|
|
edition = "2021"
|
|
homepage = "https://mcaptcha.org"
|
|
repository = "https://github.com/mCaptcha/mCaptcha"
|
|
documentation = "https://mcaptcha.org/docs/"
|
|
license = "AGPLv3 or later version"
|
|
authors = ["realaravinth <realaravinth@batsense.net>"]
|
|
|
|
[dependencies]
|
|
async-trait = "0.1.51"
|
|
thiserror = "1.0.30"
|
|
serde = { version = "1", features = ["derive"]}
|
|
url = { version = "2.2.2", features = ["serde"] }
|
|
libmcaptcha = { version = "0.2.3", git = "https://github.com/mCaptcha/libmcaptcha", features = ["minimal"], default-features = false, tag = "0.2.3"}
|
|
#libmcaptcha = { branch = "master", git = "https://github.com/mCaptcha/libmcaptcha", features = ["full"] }
|
|
|
|
[features]
|
|
default = []
|
|
test = []
|
|
|
|
[dev-dependencies]
|
|
serde_json = "1"
|