forked from gleich/is31fl3731
-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathCargo.toml
38 lines (32 loc) · 931 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
35
36
37
38
[package]
name = "is31fl3741"
version = "0.2.1"
edition = "2021"
authors = ["Liz Frost"]
categories = ["embedded", "no-std"]
description = "Driver for Lumissil Microsystem's IS31FL3741 IC"
license = "MIT"
repository = "https://github.com/stillinbeta/is31fl3741"
readme = "README.md"
[dependencies]
embedded-hal = "0.2.6"
embedded-graphics-core = { optional = true, version = "0.3.3" }
[package.metadata.docs.rs]
all-features = true
[dev-dependencies]
cortex-m-rt = "0.6.10"
cortex-m = "0.7.1"
panic-halt = "0.2.0"
stm32g0xx-hal = {version = "0.1.3", features = ["rt", "stm32g071"]}
tinybmp = "0.3.3"
embedded-graphics = "0.7.1"
[features]
adafruit_rgb_13x9 = []
embedded_graphics = ["embedded-graphics-core"]
default = ["adafruit_rgb_13x9", "embedded_graphics"]
[[example]]
name = "stm32"
required-features = ["adafruit_rgb_13x9"]
[[example]]
name = "gaypride"
required-features = ["adafruit_rgb_13x9", "embedded_graphics"]