picow/Cargo.toml

34 lines
1.4 KiB
TOML
Raw Permalink Normal View History

2024-10-11 18:24:55 -07:00
[package]
2024-10-11 23:48:37 -07:00
name = "picow"
2024-10-11 18:24:55 -07:00
version = "0.1.0"
edition = "2021"
2024-10-12 16:04:35 -07:00
license = "MIT"
2024-10-11 18:24:55 -07:00
2024-10-13 00:25:18 -07:00
[build-dependencies]
serde = { version = "*", features = ["derive"] }
serde_yaml = "*"
2024-10-11 18:24:55 -07:00
[dependencies]
2024-10-14 23:56:20 -07:00
chrono = { version = "*", default-features = false}
2024-10-11 23:48:37 -07:00
cortex-m-rt = "*"
2024-10-13 21:01:33 -07:00
cyw43 = { git = "https://github.com/embassy-rs/embassy.git" }
cyw43-pio = { git = "https://github.com/embassy-rs/embassy.git" }
embassy-executor = { git = "https://github.com/embassy-rs/embassy.git", features = ["arch-cortex-m", "executor-interrupt", "executor-thread", "integrated-timers", "nightly"] }
2024-10-14 23:56:20 -07:00
embassy-net = { git = "https://github.com/embassy-rs/embassy.git", features = ["raw", "dhcpv4", "dhcpv4-hostname", "dns", "multicast", "proto-ipv4", "proto-ipv6", "tcp", "udp" ] }
embassy-rp = { git = "https://github.com/embassy-rs/embassy.git", features = ["critical-section-impl", "rp2040", "time-driver" ] }
embassy-sync = { git = "https://github.com/embassy-rs/embassy.git" }
2024-10-13 21:01:33 -07:00
embassy-time = { git = "https://github.com/embassy-rs/embassy.git" }
embassy-usb-logger = { git = "https://github.com/embassy-rs/embassy.git" }
2024-10-14 23:56:20 -07:00
log = "*"
no-std-net = "*"
2024-10-12 19:58:43 -07:00
panic-halt = "*"
2024-10-11 23:48:37 -07:00
portable-atomic = { version = "*", features = ["critical-section"] }
2024-10-13 21:01:33 -07:00
rand = { version = "*", default-features = false }
2024-10-14 23:56:20 -07:00
sntpc = { version = "*", default-features = false, features = ["async"] }
2024-10-11 23:48:37 -07:00
static_cell = "*"
[profile.release]
debug = 2
lto = true
opt-level = "z"