-
Notifications
You must be signed in to change notification settings - Fork 0
/
Cargo.toml
60 lines (47 loc) · 1.26 KB
/
Cargo.toml
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
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
[package]
name = "improved-eureka"
version = "0.2.0"
edition = "2021"
default-run = "improved-eureka"
# See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html
[dependencies]
dotenvy = "0.15"
arcs-env-rs = "0.1"
arcs-logging-rs = "0.2"
actix-web = { version = "4", features = ["rustls"] }
chrono = { version = "0.4", features = ["serde"] }
const_format = "0.2"
hex = "0.4"
hmac = "0.12"
paste = "1"
lazy_static = "1"
sha2 = "0.10"
tokio = { version = "1", features = ["macros", "rt", "full"] }
once_cell = "1"
uuid = { version = "1", features = ["v4", "serde"] }
serde = "1"
serde_json = "1"
sqlx = { version = "0.7", features = ["postgres", "runtime-tokio-rustls", "uuid"] }
async-graphql = { version = "7", features = ["uuid", "chrono", "tokio"] }
async-graphql-actix-web = "7"
async-graphql-value = "7"
constant_time_eq = "0.3"
reqwest = { version = "0.12", features = ["json", "rustls-tls" ], default-features = false }
sha256 = "1"
rand = "0.8"
rpassword = "7"
futures-util = "0.3"
actix-cors = "0.7"
base64 = "0.22"
[profile.release]
opt-level = 3
lto = "thin"
[profile.release-final]
inherits = "release"
opt-level = "s"
lto = "fat"
codegen-units = 1
[profile.release-minimum]
inherits = "release-final"
opt-level = "z"
strip = true