-
Notifications
You must be signed in to change notification settings - Fork 7
Expand file tree
/
Copy pathCargo.toml
More file actions
27 lines (24 loc) · 739 Bytes
/
Cargo.toml
File metadata and controls
27 lines (24 loc) · 739 Bytes
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
[package]
name = "libmodbus"
version = "1.0.0"
authors = ["Stefan Müller <co@zzeroo.com>"]
readme = "README.md"
keywords = ["modbus", "libmodbus"]
documentation = "http://zzeroo.github.io/libmodbus-rs/libmodbus_rs/index.html"
repository = "https://github.com/zzeroo/libmodbus-rs.git"
homepage = "http://zzeroo.github.io/libmodbus-rs"
description = "libmodbus bindings for Rust"
license = "LGPL-2.1" # same as libmodbus
categories = ["api-bindings"]
edition = "2018"
[badges]
travis-ci = { repository = "zzeroo/libmodbus-rs" }
[dependencies]
libc = "0.2.80"
libmodbus-sys = { path = "libmodbus-sys", version = "1" }
rand = "0.7.3"
time = "0.2.22"
[dev-dependencies.clap]
version = "2.33"
default-features = false
features = [ "color" ]