Files
system76-embedded-controller/tool/Cargo.toml
Jeremy Soller 726a0e0837 ectool version 0.2.1:
- Add hidapi feature
- Add redox_hwio feature
- Add feature documentation
2020-10-02 09:05:25 -07:00

29 lines
601 B
TOML

[package]
name = "system76_ectool"
version = "0.2.1"
edition = "2018"
description = "System76 EC tool"
license = "MIT"
authors = ["Jeremy Soller <jeremy@system76.com>"]
repository = "https://github.com/system76/ec"
documentation = "https://docs.rs/system76_ectool"
[lib]
name = "ectool"
[[bin]]
name = "system76_ectool"
required-features = ["std"]
[dependencies]
libc = { version = "0.2", optional = true }
hidapi = { version = "1.2", optional = true }
redox_hwio = { version = "0.1.3", optional = true }
[features]
default = ["std"]
std = ["libc"]
[package.metadata.docs.rs]
all-features = true