-
Notifications
You must be signed in to change notification settings - Fork 24
/
Copy pathCargo.toml
41 lines (36 loc) · 938 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
37
38
39
40
41
[workspace]
resolver = "2"
members = [
"rodbus",
"rodbus-client",
"ffi/rodbus-bindings",
"ffi/rodbus-ffi",
"ffi/rodbus-ffi-java",
"ffi/rodbus-schema",
]
[workspace.dependencies]
oo-bindgen = "0.8.7"
sfio-tokio-ffi = "0.9.0"
sfio-tracing-ffi = "0.9.0"
tokio = "1.37.0"
tracing = "0.1.40"
tracing-subscriber = { version = "0.3.18" }
[workspace.package]
authors = ["Step Function I/O LLC <[email protected]>>"]
rust-version = "1.75"
edition = "2021"
license-file = "LICENSE.txt"
homepage = "https://stepfunc.io/products/libraries/modbus/"
repository = "https://github.com/stepfunc/rodbus"
keywords = ["dnp3", "ics", "scada", "security"]
categories = ["network-programming"]
[workspace.lints.rust]
unsafe_code = "forbid"
non_ascii_idents = "deny"
unreachable_pub = "deny"
trivial_casts = "deny"
missing_docs = "deny"
unused = { level = "deny", priority = -1 }
missing_copy_implementations = "deny"
[profile.release]
lto=true