2023-05-24 21:22:14 +05:30
|
|
|
[package]
|
|
|
|
name = "dcache"
|
|
|
|
version = "0.1.0"
|
|
|
|
edition = "2021"
|
|
|
|
|
|
|
|
# See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html
|
|
|
|
|
|
|
|
[dependencies]
|
|
|
|
openraft = { version = "0.8.3", features = ["serde"]}
|
2023-05-27 19:39:04 +05:30
|
|
|
libmcaptcha = { branch = "master", git = "https://github.com/mCaptcha/libmcaptcha", features = ["full"]}
|
|
|
|
#libmcaptcha = { path="../libmcaptcha/", features = ["full"]}
|
2023-05-24 21:22:14 +05:30
|
|
|
tracing = { version = "0.1.37", features = ["log"] }
|
|
|
|
serde_json = "1.0.96"
|
|
|
|
serde = { version = "1.0.163", features = ["derive"] }
|
|
|
|
byteorder = "1.4.3"
|
|
|
|
actix-web = "4"
|
|
|
|
actix-web-httpauth = "0.8.0"
|
|
|
|
futures-util = { version = "0.3.17", default-features = false, features = ["std"] }
|
|
|
|
lazy_static = "1.4.0"
|
|
|
|
pretty_env_logger = "0.4.0"
|
|
|
|
uuid = { version = "1", features = ["v4"] }
|
|
|
|
sqlx = { version = "0.5.13", features = [ "runtime-actix-rustls", "postgres", "time", "offline" ] }
|
|
|
|
actix-web-codegen-const-routes = { version = "0.1.0", tag = "0.1.0", git = "https://github.com/realaravinth/actix-web-codegen-const-routes" }
|
|
|
|
derive_builder = "0.11.2"
|
|
|
|
config = "0.11"
|
|
|
|
derive_more = "0.99.17"
|
|
|
|
url = { version = "2.2.2", features = ["serde"]}
|
|
|
|
async-trait = "0.1.36"
|
|
|
|
clap = { version = "4.1.11", features = ["derive", "env"] }
|
|
|
|
reqwest = { version = "0.11.9", features = ["json"] }
|
|
|
|
tokio = { version = "1.0", default-features = false, features = ["sync"] }
|
|
|
|
tracing-subscriber = { version = "0.3.0", features = ["env-filter"] }
|
|
|
|
actix = "0.13.0"
|
|
|
|
|
|
|
|
|
|
|
|
[build-dependencies]
|
|
|
|
serde_json = "1"
|
|
|
|
sqlx = { version = "0.5.13", features = [ "runtime-actix-rustls", "postgres", "time", "offline"] }
|
|
|
|
|
|
|
|
[dev-dependencies]
|
|
|
|
actix-rt = "2.7.0"
|
|
|
|
base64 = "0.13.0"
|
|
|
|
anyhow = "1.0.63"
|
|
|
|
maplit = "1.0.2"
|