Files
system76-embedded-controller/tool/Cargo.toml
Tim Crawford 975377af42 Update Rust toolchain to 2021-06-15
Update toolchain to match the version used in Redox.

Update dependencies to fix build.

Signed-off-by: Tim Crawford <tcrawford@system76.com>
2021-10-26 11:35:48 -06:00

31 lines
822 B
TOML

[package]
name = "system76_ectool"
version = "0.3.6"
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", "hidapi", "clap"]
[dependencies]
clap = { version = "2", optional = true }
libc = { version = "0.2", optional = true }
hidapi = { version = "1.2", default-features = false, features = ["linux-static-hidraw"], optional = true }
redox_hwio = { version = "0.1.4", optional = true }
downcast-rs = { version = "1.2.0", default-features = false }
[features]
default = ["std", "hidapi", "clap"]
std = ["libc", "downcast-rs/std"]
[package.metadata.docs.rs]
all-features = true