-
Notifications
You must be signed in to change notification settings - Fork 0
/
Cargo.toml
38 lines (32 loc) · 1.13 KB
/
Cargo.toml
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
[package]
name = "async-button"
version = "0.1.0"
edition = "2021"
authors = ["Alexander van Saase <avsaase at gmail dot com>"]
description = "Async button handling crate for no_std environments"
keywords = ["no_std", "async", "embassy", "button", "embedded"]
categories = ["no-std", "embedded", "asynchronous"]
repository = "https://github.com/avsaase/async-button"
readme = "README.md"
license = "MIT OR Apache-2.0"
[dependencies]
cfg-if = "1.0.0"
embassy-time = { version = "0.3.2" }
embedded-hal-async = "1.0.0"
embedded-hal = "1.0.0"
defmt = { version = "0.3.5", optional = true }
tokio = { version = "1.34.0", default-features = false, optional = true }
[dev-dependencies]
embedded-hal-mock = { version = "0.10.0", default-features = false, features = [
"eh1",
"embedded-time",
"embedded-hal-async",
] }
tokio = { version = "1.34.0", features = ["rt", "macros", "time", "test-util"] }
claims = "0.7.1"
[features]
default = []
defmt = ["dep:defmt", "embassy-time/defmt"]
std = ["dep:tokio"]
[patch.crates-io]
embedded-hal-mock = { git = "https://github.com/avsaase/embedded-hal-mock/", rev = "bec7a531d1e91fa19ef43abfb4af629000b15e90" }