-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathCargo.toml
38 lines (32 loc) · 921 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
[package]
name = "roboplc-io-ads"
version = "1.4.0"
edition = "2021"
authors = ["Serhij S. <[email protected]>"]
license-file = "LICENSE.md"
description = "RoboPLC I/O connector for TwinCAT/ADS"
repository = "https://github.com/roboplc/roboplc-io-ads"
keywords = ["realtime", "twincat", "ads", "plc", "industrial"]
readme = "README.md"
autoexamples = false
[dependencies]
bma-ts = { version = "0.1.10" }
byteorder = "1.5.0"
itertools = "0.12.1"
roboplc = { version = "0.5", default-features = false }
rtsc = "0.3"
tracing = { version = "0.1.40", features = ["log"] }
zerocopy = "0.6"
[features]
locking-default = ["roboplc/locking-default"]
locking-rt = ["roboplc/locking-rt"]
locking-rt-safe = ["roboplc/locking-rt-safe"]
default = ["locking-rt-safe"]
[dev-dependencies]
once_cell = "1.19.0"
[[example]]
name = "pull"
path = "examples/pull.rs"
[[example]]
name = "notifications"
path = "examples/notifications.rs"