[package] name = "pico_leds" version = "0.1.0" edition = "2021" [dependencies] embassy-embedded-hal = { path = "embassy/embassy-embedded-hal", features = [ "defmt", ] } embassy-sync = { path = "embassy/embassy-sync", features = ["defmt"] } embassy-executor = { path = "embassy/embassy-executor", features = [ "task-arena-size-98304", "arch-cortex-m", "executor-thread", "executor-interrupt", "defmt", ] } embassy-time = { path = "embassy/embassy-time", features = [ "defmt", "defmt-timestamp-uptime", ] } embassy-rp = { path = "embassy/embassy-rp", features = [ "defmt", "unstable-pac", "time-driver", "critical-section-impl", "rp2040", ] } embassy-usb = { path = "embassy/embassy-usb", features = ["defmt"] } embassy-net = { path = "embassy/embassy-net", features = [ "defmt", "tcp", "udp", "raw", "dhcpv4", "medium-ethernet", "dns", ] } embassy-net-wiznet = { path = "embassy/embassy-net-wiznet", features = [ "defmt", ] } embassy-futures = { path = "embassy/embassy-futures" } embassy-usb-logger = { path = "embassy/embassy-usb-logger" } cyw43 = { path = "embassy/cyw43", features = [ "defmt", "firmware-logs", "bluetooth", ] } cyw43-pio = { path = "embassy/cyw43-pio", features = ["defmt"] } defmt = "0.3" defmt-rtt = "0.4" fixed = "1.23.1" fixed-macro = "1.2" #coap-lite = { path = "coap-lite", features = ["udp"] , default-features = false} embedded-alloc = "0.6" # for web request example serde = { version = "1.0", default-features = false, features = ["derive"] } serde-json-core = "0.6" #cortex-m = { path = "cortex-m/cortex-m", features = ["critical-section-single-core"] } #cortex-m = { path = "cortex-m", features = ["critical-section-single-core"] } cortex-m = { version = "0.7", features = ["inline-asm"] } #cortex-m-rt = { path = "cortex-m/cortex-m-rt" } cortex-m-rt = "*" panic-probe = { version = "0.3", features = ["print-defmt"] } display-interface-spi = "0.5" embedded-graphics = "0.8" st7789 = "0.7" display-interface = "0.5" byte-slice-cast = { version = "1.2.0", default-features = false } smart-leds = "0.4" heapless = "0.8" usbd-hid = "0.8.1" #embedded-hal-1 = { package = "embedded-hal", version = "1.0" } embedded-hal-async = "1.0" embedded-hal-bus = { version = "0.2", features = ["async"] } embedded-io-async = { version = "0.6.1", features = ["defmt-03"] } embedded-storage = { version = "0.3" } static_cell = "2.1" portable-atomic = { version = "1.5", features = ["critical-section"] } log = "0.4" pio-proc = "0.2" pio = "0.2.1" rand = { version = "0.8.5", default-features = false } embedded-sdmmc = "0.8.0" embedded-nal = "0.9" #trouble-host = { version = "0.1.0", features = ["defmt", "gatt"] } embedded-time = "0.12" bincode = { version = "2.0.0-rc.3", default-features = false, features = [ "alloc", "derive", ] } ector = { version = "0.6.0", default-features = false } embedded-nal-async = { version = "0.8" } rp2040-hal = { git = "https://github.com/rp-rs/rp-hal.git" } #rp2040-boot2 = "0.3" #ws2812-spi = "0.5.0" fugit = "0.3" #ws2811-spi = { path = "ws2811-spi-rs", features = ["mosi_idle_high"] } # embassy-nrf = { version = "0.1.0", default-features = false, features = ["time-driver-rtc1", "gpiote"]} smart-leds-trait = "*" ws2812-async = { git = "https://github.com/kalkyl/ws2812-async" } rgb = "0.8.43" #native-tls = "*" #dns-lookup = "*" # embedded-tls = { version = "0.12.0", default-features = false, features = ["async", "defmt"]} assign-resources = "0.4.1" embedded-hal = "1.0" emballoc = { version = "0.3.0", features = ["portable_atomic"] } [profile.release] codegen-units = 1 debug = 0 debug-assertions = false incremental = true lto = 'fat' opt-level = 's' overflow-checks = false [profile.dev] debug = 2 lto = true #opt-level = "z" opt-level = 3 [patch.crates-io] #trouble-host = { git = "https://github.com/embassy-rs/trouble.git", rev = "4b8c0f499b34e46ca23a56e2d1640ede371722cf" } embassy-executor = { path = "embassy/embassy-executor" } embassy-sync = { path = "embassy/embassy-sync" } embassy-futures = { path = "embassy/embassy-futures" } embassy-time = { path = "embassy/embassy-time" } embassy-time-driver = { path = "embassy/embassy-time-driver" } embassy-embedded-hal = { path = "embassy/embassy-embedded-hal" }