2021-03-09 10:28:54 +00:00
|
|
|
[package]
|
2021-06-01 12:03:47 +00:00
|
|
|
name = "mcaptcha"
|
2021-03-09 10:28:54 +00:00
|
|
|
version = "0.1.0"
|
2021-03-24 07:13:32 +00:00
|
|
|
description = "mCaptcha - a PoW-based CAPTCHA system"
|
|
|
|
homepage = "https://mcaptcha.org"
|
2021-06-01 12:03:47 +00:00
|
|
|
repository = "https://github.com/mCaptcha/mCaptcha"
|
2021-03-24 07:13:32 +00:00
|
|
|
documentation = "https://mcaptcha.org/docs/"
|
2021-04-30 05:44:29 +00:00
|
|
|
license = "AGPLv3 or later version"
|
2021-03-09 10:28:54 +00:00
|
|
|
authors = ["realaravinth <realaravinth@batsense.net>"]
|
2021-12-18 08:17:01 +00:00
|
|
|
edition = "2021"
|
2021-06-01 12:03:47 +00:00
|
|
|
default-run = "mcaptcha"
|
2021-03-24 07:13:32 +00:00
|
|
|
build = "build.rs"
|
2021-03-09 10:28:54 +00:00
|
|
|
|
|
|
|
# See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html
|
|
|
|
|
2022-05-08 14:32:17 +00:00
|
|
|
|
|
|
|
[workspace]
|
2022-05-14 10:29:40 +00:00
|
|
|
exclude = ["db/db-migrations", "utils/cache-bust"]
|
2022-07-20 12:12:12 +00:00
|
|
|
memebers = [".", "db/db-core", "db/db-sqlx-postgres", "db/db-sqlx-maria"]
|
2022-05-08 14:32:17 +00:00
|
|
|
|
2021-03-10 15:13:25 +00:00
|
|
|
[[bin]]
|
2021-06-01 12:03:47 +00:00
|
|
|
name = "mcaptcha"
|
2021-03-10 15:13:25 +00:00
|
|
|
path = "./src/main.rs"
|
|
|
|
|
2021-03-09 10:28:54 +00:00
|
|
|
[dependencies]
|
2022-05-07 10:40:14 +00:00
|
|
|
actix-web = "4.0.1"
|
|
|
|
actix = "0.13"
|
|
|
|
actix-identity = "0.4.0"
|
|
|
|
actix-http = "3.0.4"
|
2021-06-30 14:43:12 +00:00
|
|
|
actix-rt = "2"
|
2022-05-07 10:40:14 +00:00
|
|
|
actix-cors = "0.6.1"
|
2021-06-30 14:43:12 +00:00
|
|
|
actix-service = "2.0.0"
|
2022-05-27 10:53:33 +00:00
|
|
|
async-trait = "0.1.51"
|
2021-03-30 15:19:09 +00:00
|
|
|
mime_guess = "2.0.3"
|
2022-05-07 10:40:14 +00:00
|
|
|
rust-embed = "6.4.0"
|
2021-07-03 17:02:40 +00:00
|
|
|
cache-buster = { git = "https://github.com/realaravinth/cache-buster" }
|
2021-03-26 16:48:01 +00:00
|
|
|
|
2021-06-30 14:43:12 +00:00
|
|
|
futures = "0.3.15"
|
2021-11-29 12:02:33 +00:00
|
|
|
tokio = { version = "1.14", features = ["sync"]}
|
2021-03-09 10:28:54 +00:00
|
|
|
|
2022-07-20 12:12:12 +00:00
|
|
|
sqlx = { version = "0.5.13", features = [ "runtime-actix-rustls", "postgres", "time", "offline", "mysql"] }
|
2021-06-13 08:05:09 +00:00
|
|
|
argon2-creds = { branch = "master", git = "https://github.com/realaravinth/argon2-creds"}
|
2021-06-29 14:12:07 +00:00
|
|
|
#argon2-creds = { version="*", path = "../../argon2-creds/" }
|
2021-03-24 09:01:11 +00:00
|
|
|
config = "0.11"
|
2022-05-07 10:40:14 +00:00
|
|
|
validator = { version = "0.15", features = ["derive"]}
|
2021-03-09 10:28:54 +00:00
|
|
|
|
2022-05-07 10:40:14 +00:00
|
|
|
derive_builder = "0.11"
|
2021-03-09 10:28:54 +00:00
|
|
|
derive_more = "0.99"
|
|
|
|
|
|
|
|
serde = "1"
|
|
|
|
serde_json = "1"
|
|
|
|
|
|
|
|
url = "2.2"
|
2022-05-07 10:40:14 +00:00
|
|
|
urlencoding = "2.1.0"
|
2021-03-09 10:28:54 +00:00
|
|
|
|
2021-03-10 15:13:25 +00:00
|
|
|
pretty_env_logger = "0.4"
|
2021-03-09 10:28:54 +00:00
|
|
|
log = "0.4"
|
|
|
|
|
|
|
|
lazy_static = "1.4"
|
|
|
|
|
2021-03-10 15:13:25 +00:00
|
|
|
|
2023-06-28 17:19:08 +00:00
|
|
|
libmcaptcha = { version = "0.2.3", git = "https://github.com/mCaptcha/libmcaptcha", features = ["full"], tag ="0.2.3" }
|
|
|
|
#libmcaptcha = { branch = "master", git = "https://github.com/mCaptcha/libmcaptcha", features = ["full"] }
|
2021-06-11 14:01:03 +00:00
|
|
|
#libmcaptcha = { path = "../libmcaptcha", features = ["full"]}
|
2021-03-10 15:13:25 +00:00
|
|
|
|
2021-03-11 11:15:43 +00:00
|
|
|
rand = "0.8"
|
2021-03-30 08:17:42 +00:00
|
|
|
|
2022-05-07 10:40:14 +00:00
|
|
|
sailfish = "0.4.0"
|
2021-04-01 09:53:36 +00:00
|
|
|
|
2021-05-08 08:29:13 +00:00
|
|
|
mime = "0.3.16"
|
|
|
|
|
2022-08-08 21:21:40 +00:00
|
|
|
num_cpus = "1.13.1"
|
|
|
|
|
2021-06-29 15:38:40 +00:00
|
|
|
lettre = { version = "0.10.0-rc.3", features = [
|
|
|
|
"builder",
|
|
|
|
"tokio1",
|
|
|
|
"tokio1-native-tls",
|
|
|
|
"smtp-transport"
|
|
|
|
]}
|
|
|
|
|
2023-03-25 05:03:34 +00:00
|
|
|
openssl = { version = "0.10.48", features = ["vendored"] }
|
2023-06-29 21:50:57 +00:00
|
|
|
uuid = { version = "1.4.0", features = ["v4", "serde"] }
|
2021-07-15 12:37:12 +00:00
|
|
|
|
2022-05-08 14:32:17 +00:00
|
|
|
|
|
|
|
[dependencies.db-core]
|
|
|
|
path = "./db/db-core"
|
|
|
|
|
|
|
|
[dependencies.db-sqlx-postgres]
|
|
|
|
path = "./db/db-sqlx-postgres"
|
|
|
|
|
2022-07-20 12:12:12 +00:00
|
|
|
[dependencies.db-sqlx-maria]
|
|
|
|
path = "./db/db-sqlx-maria"
|
|
|
|
|
2022-05-07 10:40:14 +00:00
|
|
|
[dependencies.my-codegen]
|
|
|
|
git = "https://github.com/realaravinth/actix-web"
|
|
|
|
package = "actix-web-codegen"
|
|
|
|
|
|
|
|
[dependencies.actix-auth-middleware]
|
|
|
|
version = "0.2.0"
|
|
|
|
git = "https://github.com/realaravinth/actix-auth-middleware"
|
|
|
|
features = ["actix_identity_backend"]
|
2021-06-29 15:38:40 +00:00
|
|
|
|
2021-04-01 09:53:36 +00:00
|
|
|
[build-dependencies]
|
|
|
|
serde_json = "1"
|
2022-07-20 12:12:12 +00:00
|
|
|
sqlx = { version = "0.5.13", features = [ "runtime-actix-rustls", "postgres", "time", "offline", "mysql" ] }
|
2021-04-10 14:49:59 +00:00
|
|
|
|
|
|
|
[dev-dependencies]
|
2022-08-08 21:21:40 +00:00
|
|
|
pow_sha256 = { version = "0.3.1", git = "https://github.com/mcaptcha/pow_sha256", tag="0.3.1" }
|
2022-05-07 10:40:14 +00:00
|
|
|
awc = "3.0.0"
|
2021-06-12 08:14:18 +00:00
|
|
|
|
|
|
|
|
|
|
|
[target.x86_64-unknown-linux-musl]
|
|
|
|
linker = "x86_64"
|