Skip to content

Commit

Permalink
update version to 1.2 and update dependencies
Browse files Browse the repository at this point in the history
  • Loading branch information
icewind1991 committed Dec 15, 2021
1 parent 6ef50ca commit aa0df51
Show file tree
Hide file tree
Showing 3 changed files with 5 additions and 7 deletions.
5 changes: 2 additions & 3 deletions cargo-espflash/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[package]
name = "cargo-espflash"
version = "1.1.0"
version = "1.2.0"
authors = [
"Robin Appelman <robin@icewind.nl>",
"Jesse Braham <jesse@beta7.io>",
Expand All @@ -27,8 +27,7 @@ categories = [
[dependencies]
cargo_metadata = "0.14"
cargo_toml = "0.10"
clap = "3.0.0-rc.1"
clap_derive = "3.0.0-rc.1"
clap = { version = "3.0.0-rc.1", features = ["derive"] }
crossterm = "0.22"
espflash = { version = "1", path = "../espflash" }
miette = { version = "3", features = ["fancy"] }
Expand Down
3 changes: 1 addition & 2 deletions cargo-espflash/src/main.rs
Original file line number Diff line number Diff line change
Expand Up @@ -6,8 +6,7 @@ use std::{
};

use cargo_metadata::Message;
use clap::{AppSettings, Parser as _};
use clap_derive::Parser;
use clap::{AppSettings, Parser};
use espflash::{
cli::{clap::*, connect, monitor::monitor},
Chip, Config, FirmwareImage, ImageFormatId, PartitionTable,
Expand Down
4 changes: 2 additions & 2 deletions espflash/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[package]
name = "espflash"
version = "1.1.0"
version = "1.2.0"
authors = ["Robin Appelman <robin@icewind.nl>"]
edition = "2018"
rust-version = "1.56"
Expand All @@ -22,7 +22,7 @@ indicatif = "0.16"
md5 = "0.7"
clap = { version = "3.0.0-rc.1", features = ["derive"] }
serialport = "4"
sha2 = "0.9"
sha2 = "0.10"
slip-codec = "0.3"
thiserror = "1"
xmas-elf = "0.8"
Expand Down

0 comments on commit aa0df51

Please sign in to comment.