forked from ethercat-rs/ethercat
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathCargo.toml
45 lines (37 loc) · 1.23 KB
/
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
42
43
44
45
[workspace]
[package]
name = "ethercat"
version = "0.3.0"
description = "Binding to the IgH/Etherlab open-source EtherCAT master"
keywords = ["ethercat", "master", "etherlab", "fieldbus", "automation"]
authors = ["Georg Brandl <[email protected]>", "slowtec GmbH <[email protected]>"]
repository = "https://github.com/ethercat-rs/ethercat"
readme = "README.md"
license = "MIT/Apache-2.0"
edition = "2018"
[dependencies]
derive-new = "0.7"
ethercat-sys = { path = "ethercat-sys", version = "0.3" }
ethercat-types = "0.3.1"
libc = "0.2"
log = "0.4"
memmap = "0.7"
num-traits = "0.2"
thiserror = "1.0"
[dev-dependencies]
ethercat-esi = "0.2"
env_logger = {version ="0.11", default-feature=false}
[features]
default = []
# Enable this feature to use it with the
# synapticon branch `release/v1.5.2-sncn-11`
# at https://github.com/synapticon/Etherlab_EtherCAT_Master
sncn = ["ethercat-sys/sncn"]
# Enable this feature to use pregenerated bindings.
# CAUTION: If your kernel module was not built
# with the corresponding version, it might break your application.
pregenerated-bindings = ["ethercat-sys/pregenerated-bindings"]
[package.metadata.docs.rs]
features = [ "pregenerated-bindings" ]
[badges]
maintenance = { status = "actively-developed" }