mirror of
https://github.com/Dasharo/ec.git
synced 2026-03-06 14:50:51 -08:00
58b5c79c63
Signed-off-by: Michał Kopeć <michal.kopec@3mdeb.com>
34 lines
926 B
TOML
34 lines
926 B
TOML
[package]
|
|
name = "dasharo_ectool"
|
|
version = "0.3.8"
|
|
edition = "2018"
|
|
description = "Dasharo EC tool"
|
|
license = "MIT"
|
|
authors = ["Jeremy Soller <jeremy@system76.com>", "Michał Kopeć <michal.kopec@3mdeb.com>"]
|
|
repository = "https://github.com/dasharo/ec"
|
|
documentation = "https://docs.dasharo.com"
|
|
|
|
[lib]
|
|
name = "ectool"
|
|
|
|
[[bin]]
|
|
name = "dasharo_ectool"
|
|
required-features = ["std", "hidapi", "clap"]
|
|
|
|
[dependencies]
|
|
clap = { version = "3.2", optional = true }
|
|
libc = { version = "0.2", optional = true }
|
|
hidapi = { version = "1.4", default-features = false, features = ["linux-shared-hidraw"], optional = true }
|
|
redox_hwio = { version = "0.1.6", default-features = false, 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
|
|
|
|
[registries.crates-io]
|
|
protocol = "sparse"
|