[package] name = "rsportal" version = "0.1.0" edition = "2018" authors = ["stillinbeta "] license = "BSD-3-Clause" repository = "https://git.sr.ht/~liz/rsportal/" readmed = "README.md" categories = ["embedded", "no-std", "hardware-support"] description = "A higher-level interface to the Adafruit PyPortal" keywords = ["pyportal", "adafruit"] # See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html [dependencies] pyportal = "0.8.0" # for LED ws2812-timer-delay = {version="~0.3", optional=true} smart-leds = {version="~0.3", optional=true} rtt-target = { version= "0.3.1", features = ["cortex-m"], optional=true } # for screen ili9341 = {version="0.5.0", optional=true} display-interface-parallel-gpio = {version="0.6.0", optional=true} [features] default = ["neopixel", "display"] neopixel = ["ws2812-timer-delay", "smart-leds", "rtt-target"] display = ["ili9341", "display-interface-parallel-gpio"] [package.metadata] chip = "ATSAMD51J20A"