23 lines
498 B
TOML
23 lines
498 B
TOML
[package]
|
|
name = "time-rs"
|
|
version = "0.1.0"
|
|
description = ""
|
|
license = "MIT"
|
|
edition = "2021"
|
|
rust-version = "1.75.0"
|
|
|
|
include = [
|
|
"Cargo.toml",
|
|
"src/**/*",
|
|
]
|
|
|
|
[dependencies]
|
|
actix-web = "4.5.0"
|
|
chrono = "0.4.33"
|
|
|
|
[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*
|