Skip to content

Commit

Permalink
Strip release binaries
Browse files Browse the repository at this point in the history
With rustc 1.59 and cargo 1.60 the `strip` option is fully supported.
Raise the MSRV to 1.59.

Fixes esrlabs#295
  • Loading branch information
flxo committed Apr 27, 2022
1 parent 9815fa7 commit 3dbad4c
Show file tree
Hide file tree
Showing 4 changed files with 4 additions and 3 deletions.
2 changes: 1 addition & 1 deletion .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -72,7 +72,7 @@ jobs:
matrix:
rust:
- stable
- 1.57.0 # MSRV
- 1.59.0 # MSRV
steps:
- uses: actions-rs/toolchain@v1
with:
Expand Down
1 change: 1 addition & 0 deletions Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -28,3 +28,4 @@ members = [
codegen-units = 1
lto = true
opt-level = "z"
strip = true
2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -107,7 +107,7 @@ subsystems and features:
## Quickstart

Northstar is written in [Rust](https://www.rust-lang.org). The minimum supported
Rust version (MSRV) is *1.57*. Rust is best installed and managed by the rustup
Rust version (MSRV) is *1.59*. Rust is best installed and managed by the rustup
tool. Rust has a 6-week rapid release process and supports a great number of
platforms, so there are many builds of Rust available at any time. rustup
manages these builds in a consistent way on every platform that Rust supports,
Expand Down
2 changes: 1 addition & 1 deletion northstar/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@ authors = ["ESRLabs"]
edition = "2021"
build = "build.rs"
license = "Apache-2.0"
rust-version = "1.57.0"
rust-version = "1.59.0"

[dependencies]
async-stream = { version = "0.3.3", optional = true }
Expand Down

0 comments on commit 3dbad4c

Please sign in to comment.