-
Notifications
You must be signed in to change notification settings - Fork 4
Expand file tree
/
Copy pathCargo.toml
More file actions
42 lines (38 loc) · 1020 Bytes
/
Cargo.toml
File metadata and controls
42 lines (38 loc) · 1020 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
31
32
33
34
35
36
37
38
39
40
41
42
[package]
name = "auth-rs"
description = "Authorization and authentication service"
version = "0.2.1"
edition = "2021"
rust-version = "1.74.1"
authors = ["CodeDead <admin@codedead.com>"]
readme = "README.md"
license = "GPL-3.0-only"
homepage = "https://codedead.com/"
keywords = ["api", "authorization", "authentication", "auth"]
# See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html
[dependencies]
actix-web = "4"
actix-cors = "0.6.5"
actix-web-grants = "4.0.3"
mongodb = { version = "2.7.1", features = ["bson-chrono-0_4"] }
chrono = "0.4.31"
serde = { version = "1.0", features = ["derive"] }
serde_json = "1.0"
futures = "0.3.29"
dotenvy = "0.15.7"
argon2 = "0.5.2"
regex = "1.10.2"
jsonwebtoken = "8.3.0"
env_logger = "0.10.1"
log = "0.4.20"
utoipa = "4.1.0"
utoipa-swagger-ui = { version = "5.0.0", features = ["actix-web"] }
[profile.dev]
panic = "abort"
[profile.release]
lto = true
strip = "symbols"
debug = false
panic = "abort"
opt-level = "z"
codegen-units = 1