forked from nello-io/relay8x
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathCargo.toml
32 lines (28 loc) · 809 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
[package]
name = "relay8x"
version = "0.1.1"
authors = ["Korbinian Maier <korbinian.maier@tum.de>", "Bernhard Schuster <bernhard@ahoi.io>"]
description = "control a specific 8x relaise card via serial / USB"
readme = "README.md"
license = "Apache-2.0 OR MIT"
keywords = ["relaise","relay","hardware","switch"]
categories = ["command-line-utilities","development-tools::testing","embedded","parser-implementations"]
homepage = "https://ahoi.io/project/relay8x"
repository = "https://github.com/nello-io/relay8x"
[badges]
maintenance = { status = "passively-maintained" }
[dependencies]
bytes = "0.4"
serial = "0.4"
log = "0.4"
docopt = "1.0"
env_logger = "0.5"
serde = "1.0"
serde_derive = "1.0"
failure = "0.1.1"
[lib]
name = "relay8x"
path = "src/lib.rs"
[[bin]]
name = "relay8x"
path = "src/bin/main.rs"