-
Notifications
You must be signed in to change notification settings - Fork 47
Expand file tree
/
Copy pathCargo.toml
More file actions
33 lines (29 loc) · 996 Bytes
/
Cargo.toml
File metadata and controls
33 lines (29 loc) · 996 Bytes
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
[package]
name = "sysfs_gpio"
version = "0.6.2"
authors = [
"Paul Osborne <osbpau@gmail.com>",
"The Embedded Linux Team <embedded-linux@teams.rust-embedded.org>",
]
license = "MIT/Apache-2.0"
repository = "https://github.com/rust-embedded/rust-sysfs-gpio"
homepage = "https://github.com/rust-embedded/rust-sysfs-gpio"
documentation = "https://docs.rs/sysfs_gpio/"
description = "Provides access to GPIOs using the Linux sysfs interface."
readme = "README.md"
edition = "2021"
rust-version = "1.84"
resolver = "3"
[features]
mio-evented = ["mio"]
async-tokio = ["futures", "tokio", "mio-evented"]
[dependencies]
futures = { version = "0.3", optional = true }
nix = { version = "0.31", features = ["event"] }
mio = { version = "1", optional = true, features = ["os-ext"] }
tokio = { version = "1", optional = true, features = ["net"] }
[dev-dependencies]
tokio = { version = "1", features = ["rt-multi-thread", "macros"] }
[[example]]
name = "tokio"
required-features = ["async-tokio"]