Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Miscellaneous cleanup and refactoring #41

Merged
merged 8 commits into from
Dec 22, 2023
64 changes: 32 additions & 32 deletions Cargo.lock

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

12 changes: 6 additions & 6 deletions Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -21,21 +21,21 @@ static_cell = "2.0.0"
[dev-dependencies]
assert2 = "0.3.11"
matches = "0.1.10"
mockall = "0.12.0"
mockall_double = "0.3.0"
mockall = "0.12.1"
mockall_double = "0.3.1"

[features]
esp32 = ["esp32-hal"]
esp32s2 = ["esp32s2-hal"]
esp32s3 = ["esp32s3-hal"]
esp32c2 = ["esp32c2-hal"]
esp32c3 = ["esp32c3-hal"]
esp32c6 = ["esp32c6-hal"]
esp32h2 = ["esp32h2-hal"]
esp32c2 = ["esp32c2-hal"]
esp32s2 = ["esp32s2-hal"]
esp32s3 = ["esp32s3-hal"]
dprint = []

[profile.release]
opt-level = "s" # See: https://github.com/llvm/llvm-project/issues/57988
opt-level = "z"
codegen-units = 1
lto = true
panic = "abort"
Expand Down
2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
# esp-flasher-stub

[![GitHub Workflow Status](https://github.com/esp-rs/esp-println/actions/workflows/ci.yml/badge.svg)](https://github.com/esp-rs/esp-println/actions/workflows/ci.yml)
![MSRV](https://img.shields.io/badge/MSRV-1.65-blue?labelColor=1C2C2E&logo=Rust&style=flat-square)
![MSRV](https://img.shields.io/badge/MSRV-1.67-blue?labelColor=1C2C2E&logo=Rust&style=flat-square)
[![Matrix](https://img.shields.io/matrix/esp-rs:matrix.org?label=join%20matrix&color=BEC5C9&labelColor=1C2C2E&logo=matrix&style=flat-square)](https://matrix.to/#/#esp-rs:matrix.org)

Rust implementation of flasher stub located in [esptool](https://github.com/espressif/esptool/).
Expand Down
Loading