Skip to content

Commit d954218

Browse files
committed
Make the Cargo manifests more consistent, update and sort dependencies
1 parent a34c3a4 commit d954218

File tree

3 files changed

+31
-24
lines changed

3 files changed

+31
-24
lines changed

Cargo.lock

Lines changed: 1 addition & 2 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

cargo-espflash/Cargo.toml

Lines changed: 2 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
[package]
22
name = "cargo-espflash"
3-
version = "1.4.1"
3+
version = "1.5.0-dev"
44
authors = [
55
"Robin Appelman <[email protected]>",
66
"Jesse Braham <[email protected]>",
@@ -32,9 +32,8 @@ pkg-fmt = "bin"
3232
cargo_metadata = "0.14"
3333
cargo_toml = "0.11"
3434
clap = { version = "3.1", features = ["derive"] }
35-
crossterm = "0.23"
3635
espflash = { version = "=1.5.0-dev", path = "../espflash" }
37-
miette = { version = "4.3", features = ["fancy"] }
36+
miette = { version = "4.5", features = ["fancy"] }
3837
serde = { version = "1.0", features = ["derive"] }
3938
thiserror = "1.0"
4039
toml = "0.5"

espflash/Cargo.toml

Lines changed: 28 additions & 19 deletions
Original file line numberDiff line numberDiff line change
@@ -7,9 +7,20 @@ authors = [
77
]
88
edition = "2021"
99
rust-version = "1.56"
10-
license = "GPL-2.0"
11-
description = "ESP8266 and ESP32 serial flasher"
10+
description = "A command-line tool for flashing Espressif devices over serial"
1211
repository = "https://github.com/esp-rs/espflash"
12+
license = "GPL-2.0"
13+
keywords = [
14+
"cli",
15+
"embedded",
16+
"esp",
17+
"xtensa",
18+
]
19+
categories = [
20+
"command-line-utilities",
21+
"development-tools",
22+
"embedded",
23+
]
1324
exclude = ["tests/data"]
1425

1526
[package.metadata.binstall]
@@ -20,30 +31,28 @@ pkg-fmt = "bin"
2031
name = "espflash"
2132
path = "src/main.rs"
2233

23-
[lib]
24-
2534
[dependencies]
2635
binread = "2.2"
2736
bytemuck = { version = "1.9", features = ["derive"] }
37+
clap = { version = "3.1", features = ["derive"] }
38+
crossterm = "0.23"
39+
csv = "1.1"
40+
dialoguer = "0.10"
41+
directories-next = "2.0"
42+
espmonitor = "0.7"
43+
flate2 = "1.0"
2844
indicatif = "0.16"
2945
md5 = "0.7"
30-
clap = { version = "3.1", features = ["derive"] }
46+
miette = { version = "4.5", features = ["fancy"] }
47+
regex = "1.5"
48+
serde = { version = "1.0", features = ["derive"] }
49+
serde-hex = "0.1"
50+
serde_plain = "1.0"
3151
serialport = "4.1"
3252
sha2 = "0.10"
3353
slip-codec = "0.3"
34-
thiserror = "1.0"
35-
xmas-elf = "0.8"
36-
serde = { version = "1.0", features = ["derive"] }
37-
serde_plain = "1.0"
38-
toml = "0.5"
3954
strum = "0.24"
4055
strum_macros = "0.24"
41-
csv = "1.1"
42-
regex = "1.5"
43-
flate2 = "1.0"
44-
miette = { version = "4.3", features = ["fancy"] }
45-
crossterm = "0.23"
46-
directories-next = "2.0"
47-
dialoguer = "0.10"
48-
serde-hex = "0.1"
49-
espmonitor = "0.7.0"
56+
thiserror = "1.0"
57+
toml = "0.5"
58+
xmas-elf = "0.8"

0 commit comments

Comments
 (0)