-
Notifications
You must be signed in to change notification settings - Fork 0
/
Cargo.toml
62 lines (54 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
60
61
62
[package]
name = "kcs-content-manager"
version = "0.1.0"
edition = "2021"
# See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html
[dependencies]
actix-web = "*"
actix-files = "*"
actix-multipart = "*"
futures-util = "*"
rand = "*"
rusqlite = "*"
config = "*"
lazy_static = "*"
base64 = "*"
serde = { version = "*", features = ["derive"] }
jsonwebtoken = "*"
bcrypt = "*"
actix-cors = "*"
uuid = { version = "*", features = ["v4", "v7", "fast-rng", "macro-diagnostics"] }
awc = "*"
clap = { version = "*", features = ["derive"] }
env_logger = "*"
log = "*"
url = "*"
# [dependencies.uuid]
# version = "1.2.1"
# features = [
# "v4", # Lets you generate random UUIDs
# "fast-rng", # Use a faster (but still sufficiently random) RNG
# "macro-diagnostics", # Enable better diagnostics for compile-time UUIDs
# ]
[profile.dev]
opt-level = 0
debug = true
split-debuginfo = "packed"
debug-assertions = true
overflow-checks = true
lto = "off"
panic = 'unwind'
incremental = true
codegen-units = 256
rpath = false
[profile.release]
opt-level = 3
debug = false
split-debuginfo = "off"
debug-assertions = false
overflow-checks = false
lto = 'fat'
panic = 'unwind'
incremental = true
codegen-units = 1
rpath = false