-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathCargo.toml
31 lines (26 loc) · 847 Bytes
/
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
# SPDX-FileCopyrightText: 2022 Kent Gibson <[email protected]>
#
# SPDX-License-Identifier: Apache-2.0 OR MIT
[package]
authors = ["Kent Gibson <[email protected]>"]
categories = ["embedded", "os::linux-apis", "development-tools::testing"]
description = "A library to drive gpio-sims for GPIO software testing"
edition = "2021"
rust-version = "1.63"
keywords = ["linux", "gpio", "gpiochip", "library", "testing"]
license = "Apache-2.0 OR MIT"
name = "gpiosim"
repository = "https://github.com/warthog618/gpiosim-rs"
version = "0.4.0"
[dependencies]
thiserror = "2.0"
cap-std = "3.0"
[dev-dependencies]
criterion = "0.5"
gpiocdev = {version = "0.7", features = ["uapi_v1", "uapi_v2"]}
[package.metadata.docs.rs]
all-features = true
targets = ["x86_64-unknown-linux-gnu", "i686-unknown-linux-gnu"]
[[bench]]
name = "pull"
harness = false