-
Notifications
You must be signed in to change notification settings - Fork 6
/
Cargo.toml
32 lines (28 loc) · 845 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 = "ledcat"
description = "Control lots of LED's over lots of protocols"
version = "1.0.0"
edition = "2021"
repository = "https://github.com/polyfloyd/ledcat"
authors = ["polyfloyd <floyd@polyfloyd.net>"]
readme = "README.md"
license = "GPL-3.0"
keywords = ["leds", "led-strips", "artnet", "ws2812b"]
categories = ["command-line-utilities", "embedded", "hardware-support"]
[badges]
travis-ci = { repository = "polyfloyd/ledcat", branch = "master" }
[features]
default = []
rpi-led-matrix = [ "librgbmatrix-sys" ]
[dependencies]
byteorder = "1"
clap = { version = "4.5", features = [ "cargo" ] }
gpio = "0.4"
librgbmatrix-sys = { version = "0.12", optional = true }
net2 = "0.2"
nix = { version = "0.29", features = [ "fs", "term", "net", "poll" ] }
regex = "1"
[dev-dependencies]
assert_cli = "0.6"
rand = "0.8"
tempfile = "3"