ectool 0.1.2 - support building on rust stable

This commit is contained in:
Jeremy Soller 2020-03-31 12:07:32 -06:00
parent d96147688d
commit b0f6d7314a
No known key found for this signature in database
GPG Key ID: E988B49EE78A7FB1
2 changed files with 19 additions and 6 deletions

17
tool/Cargo.lock generated
View File

@ -1,16 +1,25 @@
# This file is automatically @generated by Cargo.
# It is not intended for manual editing.
[[package]]
name = "redox_hwio"
version = "0.1.0"
name = "lazy_static"
version = "1.4.0"
source = "registry+https://github.com/rust-lang/crates.io-index"
[[package]]
name = "redox_hwio"
version = "0.1.1"
source = "registry+https://github.com/rust-lang/crates.io-index"
dependencies = [
"lazy_static 1.4.0 (registry+https://github.com/rust-lang/crates.io-index)",
]
[[package]]
name = "system76_ectool"
version = "0.1.1"
dependencies = [
"redox_hwio 0.1.0 (registry+https://github.com/rust-lang/crates.io-index)",
"redox_hwio 0.1.1 (registry+https://github.com/rust-lang/crates.io-index)",
]
[metadata]
"checksum redox_hwio 0.1.0 (registry+https://github.com/rust-lang/crates.io-index)" = "9c5c3085fd5054b1f2ad35668f7c60031e6a7cb05d82477f936ac700d24d4477"
"checksum lazy_static 1.4.0 (registry+https://github.com/rust-lang/crates.io-index)" = "e2abad23fbc42b3700f2f279844dc832adb2b2eb069b2df918f455c4e18cc646"
"checksum redox_hwio 0.1.1 (registry+https://github.com/rust-lang/crates.io-index)" = "847d8b48be152acb4b75dbc37d873ac54899389691f5de3358603c889883b25d"

View File

@ -1,6 +1,6 @@
[package]
name = "system76_ectool"
version = "0.1.1"
version = "0.1.2"
edition = "2018"
description = "System76 EC tool"
license = "MIT"
@ -11,4 +11,8 @@ repository = "https://github.com/system76/ec"
name = "ectool"
[dependencies]
redox_hwio = "0.1"
redox_hwio = "0.1.1"
[features]
default = []
stable = ["redox_hwio/stable"]