Files
system76-embedded-controller/tool/Cargo.toml
2020-10-06 09:31:34 -07:00

29 lines
601 B
TOML

[package]
name = "system76_ectool"
version = "0.2.2"
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