Files
unshell/unshell-module-load/Cargo.toml
T

23 lines
502 B
TOML
Raw Normal View History

2025-11-05 22:59:01 -07:00
# cargo-features = ["trim-paths"]
2025-11-05 15:17:31 -07:00
[package]
name = "unshell-module-load"
version = "0.1.0"
edition = "2024"
[dependencies]
libloading = "0.8.9"
log = "0.4.28"
pretty_env_logger = "0.5.0"
unshell-logger = {path = "../unshell-logger"}
unshell-modules = {path = "../unshell-modules"}
2025-11-05 22:59:01 -07:00
[profile.release]
strip = true # Strip symbols from the binary
opt-level = "z" # Optimize for size
lto = true # Link tree optimization
codegen-units = 1
panic = "abort"
debug = false # Remove debug
# trim-paths="all"