Skip to content

Commit aa0df51

Browse files
committed
update version to 1.2 and update dependencies
1 parent 6ef50ca commit aa0df51

File tree

3 files changed

+5
-7
lines changed

3 files changed

+5
-7
lines changed

cargo-espflash/Cargo.toml

+2-3
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
[package]
22
name = "cargo-espflash"
3-
version = "1.1.0"
3+
version = "1.2.0"
44
authors = [
55
"Robin Appelman <[email protected]>",
66
"Jesse Braham <[email protected]>",
@@ -27,8 +27,7 @@ categories = [
2727
[dependencies]
2828
cargo_metadata = "0.14"
2929
cargo_toml = "0.10"
30-
clap = "3.0.0-rc.1"
31-
clap_derive = "3.0.0-rc.1"
30+
clap = { version = "3.0.0-rc.1", features = ["derive"] }
3231
crossterm = "0.22"
3332
espflash = { version = "1", path = "../espflash" }
3433
miette = { version = "3", features = ["fancy"] }

cargo-espflash/src/main.rs

+1-2
Original file line numberDiff line numberDiff line change
@@ -6,8 +6,7 @@ use std::{
66
};
77

88
use cargo_metadata::Message;
9-
use clap::{AppSettings, Parser as _};
10-
use clap_derive::Parser;
9+
use clap::{AppSettings, Parser};
1110
use espflash::{
1211
cli::{clap::*, connect, monitor::monitor},
1312
Chip, Config, FirmwareImage, ImageFormatId, PartitionTable,

espflash/Cargo.toml

+2-2
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
[package]
22
name = "espflash"
3-
version = "1.1.0"
3+
version = "1.2.0"
44
authors = ["Robin Appelman <[email protected]>"]
55
edition = "2018"
66
rust-version = "1.56"
@@ -22,7 +22,7 @@ indicatif = "0.16"
2222
md5 = "0.7"
2323
clap = { version = "3.0.0-rc.1", features = ["derive"] }
2424
serialport = "4"
25-
sha2 = "0.9"
25+
sha2 = "0.10"
2626
slip-codec = "0.3"
2727
thiserror = "1"
2828
xmas-elf = "0.8"

0 commit comments

Comments
 (0)