forked from tiagocoutinho/modbus-proxy-rs
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Cargo.toml
36 lines (32 loc) · 959 Bytes
/
Cargo.toml
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
[package]
name = "modbus-proxy-rs"
version = "1.0.0"
edition = "2021"
authors = [ "Tiago Coutinho <coutinhotiago@gmail.com>",]
description = "Modbus TCP proxy"
homepage = "https://github.com/tiagocoutinho/modbus-proxy-rs"
repository = "https://github.com/tiagocoutinho/modbus-proxy-rs"
readme = "README.md"
rust-version = "1.56"
keywords = [ "modbus", "TCP", "proxy", "bridge" ]
categories = ["network-programming"]
license = "GPL-3.0-or-later"
publish = true
[badges]
maintenance = { status = "experimental" }
[dependencies]
tokio = { version = "1.15", features = ["rt", "net", "macros", "io-util", "sync", "time"] }
structopt = "0.3"
log = "0.4"
env_logger = "0.9"
config = "0.11"
serde = { version = "1", features = ["derive"] }
futures = "0.3.19"
[target.'cfg(all(target_env = "musl", target_pointer_width = "64"))'.dependencies.jemallocator]
version = "0.3"
[profile.release]
opt-level = "z"
lto = true
codegen-units = 1
panic = "abort"
strip = true