-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathCargo.toml
35 lines (32 loc) · 825 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
[package]
name = "ble-ledly"
version = "0.3.0"
edition = "2021"
authors = ["Vincenzo Buono"]
license = "MIT"
repository = "https://github.com/espressoshock/ble-ledly"
homepage = "https://github.com/espressoshock/ble-ledly"
description = """
A customizable and extensible cross-platform high-level Bluetooth Low Energy
light controller.
"""
readme = "README.md"
keywords = ["ledstrip", "ledlight", "ble", "led", "rgb"]
categories = ["hardware-support"]
[lib]
path = "src/lib.rs"
[dependencies]
btleplug = "0.9"
tokio = { version = "1", features = ["full"] }
uuid = { version = "1", features = ["v4"] }
async-trait = "0.1"
thiserror = "1"
enumflags2 = "0.7"
[features]
all = ["light", "color", "brightness", "hw_animate", "sw_animate"]
default = ["all"]
light = []
color = []
brightness = []
hw_animate = []
sw_animate = []