rustocat/Cargo.toml

35 lines
903 B
TOML
Raw Permalink Normal View History

2022-03-20 22:23:08 +00:00
[package]
name = "rustocat"
2024-04-13 22:30:57 +00:00
version = "0.1.13"
2022-03-20 22:23:08 +00:00
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
[features]
default = ["consul"]
consul = []
2022-03-20 22:23:08 +00:00
[dependencies]
2023-02-04 23:36:53 +00:00
tokio = { version = "1", features = ["full"] }
serde = { version = "1", features = ["derive"] }
serde_json = "1"
serde_yaml = "0.9"
rand = "0.8"
log = "0.4"
fern = "0.6"
chrono = "0.4"
2023-02-06 13:24:46 +00:00
async-trait = "0.1"
2024-04-13 22:30:57 +00:00
reqwest = { version = "0.11", features = [
"json",
"rustls",
"hyper-tls",
], default-features = false }
2022-03-20 22:23:08 +00:00
[profile.release]
2024-04-13 22:30:57 +00:00
opt-level = 3 # 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*