forked from phip1611/ws2818-rgb-led-spi-driver
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Cargo.toml
24 lines (21 loc) · 860 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
[package]
name = "ws28xx-n-channel-spi"
description = "Simple, stripped down, educational, no_std-compatible driver for WS28XX (WS2811/12) RGB LEDs. Uses SPI device for timing/clock, and works definitely on Linux/Raspberry Pi."
version = "2.0.0"
authors = [
"Philipp Schuster <[email protected]>",
"Danny Roberts <[email protected]>"
]
edition = "2018"
keywords = ["spi", "ws2811", "ws2812", "ws2818", "neopixel"]
categories = ["hardware-support"]
readme = "README.md"
license = "MIT"
homepage = "https://github.com/Danzibob/WS28xx-n-channel-spi/"
repository = "https://github.com/Danzibob/WS28xx-n-channel-spi/"
# See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html
[features]
default = ["adapter_spidev"]
adapter_spidev = ["spidev"]
[dependencies]
spidev = { version = "0.4.1", optional = true }