-
Notifications
You must be signed in to change notification settings - Fork 3
/
Copy pathCargo.toml
34 lines (29 loc) · 907 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 = "funksteckdose"
version = "0.1.1-alpha0"
authors = ["Felix Obenhuber <[email protected]>"]
description = "Utility for controlling wireless remote sockets via 433MHz radio transmitter"
edition = "2018"
readme = "README.md"
keywords = ["433", "rc-switch", "raspberry", "pi", "wiringpi"]
documentation = "https://docs.rs/funksteckdose"
homepage = "https://github.com/flxo/funksteckdose"
repository = "https://github.com/flxo/funksteckdose"
categories = ["command-line-utilities", "command-line-interface", "embedded"]
license = "MIT"
[badges]
travis-ci = { repository = "https://github.com/flxo/funksteckdose", branch = "master" }
[lib]
name = "funksteckdose"
path = "src/lib.rs"
[[bin]]
name = "funksteckdose"
path = "src/main.rs"
doc = false
[dependencies]
failure = "0.1.5"
log = "0.4.6"
structopt = "0.2.16"
wiringpi = { version = "0.2.4", optional = true }
[features]
default = []