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

36 lines
615 B
TOML
Raw Normal View History

cargo-features = ["trim-paths"]
2025-11-05 15:17:31 -07:00
[package]
name = "unshell-test-module"
2025-11-05 15:17:31 -07:00
version = "0.1.0"
edition = "2024"
[lib]
crate-type = ["cdylib"]
[features]
default = ["client-component", "server-component"]
client-component = []
server-component = []
# server = []
2025-11-05 15:17:31 -07:00
[profile.release]
strip = true # Strip symbols from the binary
# strip = "debuginfo"
opt-level = "s" # Optimize for size
lto = true
codegen-units = 1
panic = "abort"
debug = false
trim-paths = "all"
# crate-type = ["cdylib"]
2025-11-05 15:17:31 -07:00
[dependencies]
bincode = "2.0.1"
crossbeam-channel = "0.5.15"
2025-11-05 15:17:31 -07:00
log = "0.4.28"
unshell-modules = {path = "../unshell-modules"}