forked from slowtec/tokio-modbus
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Cargo.toml
34 lines (30 loc) · 902 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
[package]
name = "tokio-modbus"
description = "Tokio-based Modbus library"
version = "0.3.0"
authors = ["slowtec GmbH", "Markus Kohlhase <[email protected]>"]
license = "MIT/Apache-2.0"
readme = "README.md"
keywords = ["fieldbus", "modbus", "hardware", "automation"]
homepage = "https://github.com/slowtec/tokio-modbus"
repository = "https://github.com/slowtec/tokio-modbus"
edition = "2018"
[dependencies]
bytes = "0.4"
byteorder = "1"
futures = "0.1"
tokio-io = "0.1"
tokio-core = "0.1"
tokio-codec = "0.1"
tokio-proto = "0.1"
tokio-service = "0.1"
tokio-serial = { version = "3.1", optional = true }
[features]
default = ["tcp", "rtu", "sync"]
rtu = ["tokio-serial"]
tcp = []
sync = []
[badges]
travis-ci = { repository = "slowtec/tokio-modbus" }
coveralls = { repository = "slowtec/tokio-modbus", branch = "master", service = "github" }
maintenance = { status = "actively-developed" }