23 lines
742 B
TOML
23 lines
742 B
TOML
[package]
|
|
name = "rustocat"
|
|
version = "0.0.3"
|
|
edition = "2021"
|
|
description = "Socat in rust with many less features and a configuration file"
|
|
license = "ISC"
|
|
|
|
# See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html
|
|
|
|
[dependencies]
|
|
tokio = { version = "1.17.0", features = ["full"] }
|
|
futures = "0.3.21"
|
|
serde = { version = "1.0.136", features = ["derive"] }
|
|
serde_json = "1.0.79"
|
|
serde_yaml = "0.8.23"
|
|
simple-error = "0.2.3"
|
|
|
|
[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* |