40 lines
1000 B
TOML
40 lines
1000 B
TOML
|
|
[package]
|
|
name = "film-scanner-fw"
|
|
version = "0.1.0"
|
|
edition = "2021"
|
|
|
|
# See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html
|
|
|
|
[dependencies]
|
|
|
|
|
|
cortex-m = "0.7.4"
|
|
cortex-m-rt = "0.7.1"
|
|
cortex-m-rtic = "1.0.0"
|
|
embedded-hal = { version = "0.2.7", features=["unproven"] }
|
|
embedded-time = "0.12.0"
|
|
|
|
# jnc
|
|
usb-device = "0.2.8"
|
|
usbd-serial = "0.1.1"
|
|
futures = { version = "0.3", default-features = false, optional = true }
|
|
|
|
defmt = "0.3.0"
|
|
defmt-rtt = "0.3.1"
|
|
panic-probe = { version = "0.3.0", features = ["print-defmt"] }
|
|
|
|
# We're using a Pico by default on this template
|
|
rp-pico = "0.3.0"
|
|
|
|
# but you can use any BSP. Uncomment this to use the pro_micro_rp2040 BSP instead
|
|
# sparkfun-pro-micro-rp2040 = "0.1.0"
|
|
|
|
# If you're not going to use a Board Support Package you'll need these:
|
|
rp2040-hal = { version="0.4.0", features=["rt"] }
|
|
|
|
rp2040-boot2 = {version="0.2.0", optional = true }
|
|
|
|
# Film scanner-specific stuff
|
|
jerk_control = { path = "../jerk_control" }
|