113 lines
2.8 KiB
TOML
Raw Permalink Normal View History

2025-01-03 16:15:22 +01:00
[workspace]
2025-01-12 00:22:13 +01:00
members = ["tflite_demo"]
2025-01-12 19:39:49 +01:00
# [workspace.features]
# default = ["ble-l2cap", "ble-gatt-server", "ble-gatt-client", "ble-sec"]
2025-01-12 00:22:13 +01:00
2025-01-12 19:39:49 +01:00
# ble-l2cap = ["nrf-softdevice/ble-l2cap"]
# ble-gatt-server = ["nrf-softdevice/ble-gatt-server"]
# ble-gatt-client = ["nrf-softdevice/ble-gatt-client"]
# ble-sec = ["nrf-softdevice/ble-sec"]
2025-01-12 00:22:13 +01:00
2025-01-12 19:39:49 +01:00
# nrf52840 = [
# "embassy-nrf/nrf52840",
# "nrf-softdevice/nrf52840",
# "nrf-softdevice/s140",
# "dep:nrf-softdevice-s140",
# ]
2025-01-03 16:15:22 +01:00
[workspace.dependencies]
cortex-m = { version = "0.7.7", features = [
"critical-section-single-core",
"inline-asm",
] }
2025-01-12 19:39:49 +01:00
cortex-m-rt = "0.7.5"
defmt = "0.3.10"
defmt-rtt = "0.4.1"
defmt-serial = "0.10.0"
embassy-executor = { version = "0.7.0", features = [
2025-01-12 00:22:13 +01:00
"arch-cortex-m",
2025-01-12 19:39:49 +01:00
"defmt",
2025-01-12 00:22:13 +01:00
"executor-thread",
"executor-interrupt",
] }
2025-01-12 19:39:49 +01:00
embassy-futures = { version = "0.1.1", features = ["defmt"] }
embassy-nrf = { version = "0.3.1", features = [
2025-01-12 00:22:13 +01:00
"defmt",
"gpiote",
2025-01-12 19:39:49 +01:00
"nrf52840",
2025-01-12 00:22:13 +01:00
"time",
2025-01-12 19:39:49 +01:00
"time-driver-rtc1",
"unstable-pac",
2025-01-12 00:22:13 +01:00
] }
2025-01-12 19:39:49 +01:00
embassy-sync = { version = "0.6.1", features = ["defmt"] }
embassy-time = { version = "0.4.0", features = [
2025-01-12 00:22:13 +01:00
"defmt",
2025-01-12 19:39:49 +01:00
"defmt-timestamp-uptime",
2025-01-12 00:22:13 +01:00
] }
2025-01-12 19:39:49 +01:00
embassy-embedded-hal = "0.3.0"
embassy-usb = "0.2.0"
embassy-usb-logger = "0.2.0"
panic-probe = { version = "0.3.2", features = ["print-defmt"] }
# cortex-m = { version = "0.7.7", features = [
# "critical-section-single-core",
# "inline-asm",
# ] }
# cortex-m-rt = "0.7.5"
# nrf52840-hal = "0.16.0"
# usb-device = "0.3.2"
# usbd-serial = "0.2.2"
microflow = { path = "../microflow-rs" }
2025-01-12 19:39:49 +01:00
# # microflow = "0.1.3"
nalgebra = { version = "0.33.2", default-features = false, features = [
"macros",
] }
libm = "0.2"
2025-01-12 19:39:49 +01:00
# panic-halt = "1.0.0"
# panic-probe = { version = "0.3.2", features = ["print-defmt"] }
heapless = "0.8.0"
2025-01-12 19:39:49 +01:00
# lsm6ds3tr = { path = "../lsm6ds3tr-rs" }
# embassy-sync = { version = "0.5.0" }
# # embassy-embedded-hal = "0.3.0"
# embassy-executor = { version = "0.5.0", features = [
# "arch-cortex-m",
# "executor-thread",
# "executor-interrupt",
# "defmt",
# "integrated-timers",
# ] }
# embassy-time = { version = "0.3.0", features = [
# "defmt",
# "defmt-timestamp-uptime",
# ] }
# embassy-nrf = { version = "0.1.0", features = [
# "defmt",
# "nrf52840",
# "time-driver-rtc1",
# "gpiote",
# "time",
# ] }
# defmt = "0.3.10"
# defmt-rtt = "0.4.1"
# embedded-storage = "0.3.0"
embedded-hal = "1.0.0"
embedded-hal-async = { version = "1.0.0" }
embedded-alloc = "0.6.0"
2025-01-12 19:39:49 +01:00
# embedded-hal-bus = { version = "0.2.0", features = ["async"] }
# nrf-softdevice = { version = "0.1.0", features = [
# "defmt",
# "ble-peripheral",
# "ble-central",
# "critical-section-impl",
# "nrf52840",
# "s140",
# ] }
# nrf-softdevice-s140 = { version = "0.1.1" }
2025-01-12 00:22:13 +01:00
fixed = "1.24.0"
atomic-pool = "1.0.1"
static_cell = "2.0.0"
2025-01-12 19:39:49 +01:00
assign-resources = "0.4.1"