Skip to content

Commit 7c3231c

Browse files
authored
feat: strip debug symbols from binaries (#370)
* feat: strip debug symbols from binaries * changefile * 1.59 msrv * Update Cargo.toml
1 parent db4b809 commit 7c3231c

5 files changed

Lines changed: 15 additions & 2 deletions

File tree

.changes/msrv-1.59.md

Lines changed: 7 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,7 @@
1+
---
2+
"create-tauri-app": "minor"
3+
"create-tauri-app-js": "minor"
4+
---
5+
6+
Bump MSRV to 1.59
7+

.changes/stip.md

Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,5 @@
1+
---
2+
"create-tauri-app": patch
3+
---
4+
5+
Strip debug symobls from binaries.

.github/workflows/cli-test.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -32,7 +32,7 @@ jobs:
3232
runs-on: ubuntu-latest
3333
strategy:
3434
matrix:
35-
toolchain: [1.58, stable]
35+
toolchain: [1.59, stable]
3636

3737
steps:
3838
- uses: actions/checkout@v2

Cargo.toml

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -6,3 +6,4 @@ panic = "abort"
66
codegen-units = 1
77
lto = true
88
opt-level = "s"
9+
strip = true

packages/cli/Cargo.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -10,7 +10,7 @@ repository = "https://github.com/tauri-apps/create-tauri-app"
1010
keywords = [ "tauri" ]
1111
categories = [ "gui" ]
1212
exclude = [ "/node" ]
13-
rust-version = "1.58"
13+
rust-version = "1.59"
1414

1515
[[bin]]
1616
name = "cargo-create-tauri-app"

0 commit comments

Comments
 (0)