-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathCargo.toml
More file actions
53 lines (45 loc) · 2.38 KB
/
Cargo.toml
File metadata and controls
53 lines (45 loc) · 2.38 KB
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
[package]
name = "spielplatz"
description = "A bancho in Rust"
version = "0.1.0"
authors = ["infernalfire72"]
edition = "2018"
[profile.dev]
opt-level = 3 # apply all optimizations
debug = true # debug information
debug-assertions = true # runtime validation (debug/development builds)
overflow-checks = true # panic will occur on overflow
lto = "fat" # perform optimizations across all crates within the dependency graph
panic = "abort" # Terminate the process upon panic
incremental = true # improves re-compile times
codegen-units = 256 # crate to be processed in parallel (256 for incremental builds)
rpath = false # disable rpath flag
[profile.release]
opt-level = 3 # apply all optimizations
debug = false # debug information
debug-assertions = false # runtime validation (debug/development builds)
overflow-checks = false # panic will occur on overflow
lto = "fat" # perform optimizations across all crates within the dependency graph
panic = "abort" # Unwind the stack upon panic
incremental = false # improves re-compile times
codegen-units = 16 # crate to be processed in parallel (16 for non-incremental builds)
rpath = false # disable rpath flag
[profile.test]
opt-level = 3 # apply all optimizations
debug = true # debug information
debug-assertions = true # runtime validation (debug/development builds)
overflow-checks = true # panic will occur on overflow
lto = "fat" # perform optimizations across all crates within the dependency graph
# panic = "abort" # Terminate the process upon panic (ignored for test profile)
incremental = true # improves re-compile times
codegen-units = 256 # crate to be processed in parallel (256 for incremental builds)
rpath = false # disable rpath flag
[dependencies]
actix-web = "3"
anyhow = "1.0"
bcrypt = "0.8"
bytes = "0.5.6"
rand = "0.7.3"
rustls = "0.18.1"
spielplatz_macros = { path = "./spielplatz_macros" }
sqlx = { version = "0.4.0-beta.1", features = ["mysql"] }