-
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathCargo.toml
More file actions
30 lines (23 loc) · 702 Bytes
/
Cargo.toml
File metadata and controls
30 lines (23 loc) · 702 Bytes
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
[package]
name = "mcaptcha-showcase"
version = "0.1.0"
edition = "2021"
build = "build.rs"
# See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html
[dependencies]
actix-web = "4.0.1"
actix = "0.13"
actix-http = "3.0.4"
actix-web-codegen-const-routes = "0.2.0"
argon2-creds = "0.2.3"
config = "0.11"
validator = { version = "0.15", features = ["derive"]}
serde = { version = "1", features = ["derive"]}
serde_json = "1"
url = { version = "2.2", features = ["serde"]}
urlencoding = "2.1.0"
pretty_env_logger = "0.4"
log = "0.4"
reqwest = { version = "0.11.10", features = ["json"]}
[build-dependencies]
sqlx = { version = "0.7.2", features = [ "time",] }