Fixed no test crate error

This commit is contained in:
Christoffer Martinsson 2023-06-19 22:43:42 +02:00
parent 60e6258b26
commit 5ae9e09667

View File

@ -3,8 +3,6 @@ name = "rp2040"
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.2"
waveshare-rp2040-zero = "0.6.0"
@ -47,3 +45,9 @@ disable-intrinsics = ["rp2040-hal/disable-intrinsics"]
# This enables ROM functions for f64 math that were not present in the earliest RP2040s
rom-v2-intrinsics = ["rp2040-hal/rom-v2-intrinsics"]
[[bin]]
name = "rp2040"
test = false
bench = false