2022-12-04 14:02:07 +00:00
|
|
|
[package]
|
|
|
|
name = "raid_manager"
|
|
|
|
version = "0.1.0"
|
|
|
|
edition = "2021"
|
|
|
|
|
|
|
|
[dependencies]
|
|
|
|
rocket = {version = "0.5.0-rc.2", features = ["json"]}
|
2022-12-04 16:36:18 +00:00
|
|
|
regex = "1"
|
2022-12-08 12:06:19 +00:00
|
|
|
lazy_static = "1.4.0"
|
|
|
|
include_dir = "0.7.3"
|
|
|
|
rust-embed = "6.4.2"
|
2022-12-10 12:08:34 +00:00
|
|
|
versions = "4.1.0"
|
2022-12-08 12:06:19 +00:00
|
|
|
|
|
|
|
[features]
|
|
|
|
static = []
|
2022-12-08 13:22:37 +00:00
|
|
|
|
|
|
|
[profile.release]
|
|
|
|
opt-level = 'z' # Optimize for size.
|
|
|
|
lto = true # Enable Link Time Optimization
|
|
|
|
codegen-units = 1 # Reduce number of codegen units to increase optimizations.
|
|
|
|
panic = 'abort' # Abort on panic
|
|
|
|
strip = true # Strip symbols from binary*
|