-
Notifications
You must be signed in to change notification settings - Fork 2
/
Cargo.toml
46 lines (33 loc) · 1.21 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
[package]
edition = "2021"
name = "localauth0"
version = "0.8.1"
# See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html
[profile.release]
strip = true # Automatically strip symbols (elf) from the binary.
opt-level = "z" # Optimize for size.
lto = true # instructs the linker to optimize at the link stage
codegen-units = 1 # run parallel compilation prevents some optimizations
[dependencies]
actix-files = "0.6.0"
actix-web = { version = "4", features = ["openssl"] }
derive-getters = "0.4.0"
serde = {version = "1.0.137", features = ["derive"]}
serde_json = "1.0.80"
base64 = "0.22.0"
base64-url = "3.0.0"
openssl = "0.10.66"
chrono = {version = "0.4.19", features = ["serde"]}
thiserror = "1.0.31"
jsonwebtoken = "9.3.0"
rand = "0.8.5"
uuid = {version = "1.1.2", features = ["v4"]}
toml = "0.8.19"
tracing = { version = "0.1", features = ["log", "max_level_info", "release_max_level_info"] }
tracing-subscriber = { version = "0.3", features = ["env-filter"] }
futures = "0.3.21"
reqwest = { version = "0.12.5", default-features = false, features = ["native-tls"] }
tokio = { version = "1.36.0", default-features = false }
[features]
default = []
vendor-openssl = [ "openssl/vendored" ]