Skip to content

Commit 232f9dd

Browse files
Correct rust version to 1.65 or none
1 parent 377b776 commit 232f9dd

File tree

8 files changed

+2
-8
lines changed

8 files changed

+2
-8
lines changed

.github/workflows/main.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -229,7 +229,7 @@ jobs:
229229
with:
230230
submodules: true
231231
- name: Install Rust
232-
run: rustup update 1.58.0 && rustup default 1.58.0
232+
run: rustup update 1.65.0 && rustup default 1.65.0
233233
- run: cargo build
234234

235235
miri:

Cargo.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -14,7 +14,7 @@ A library to acquire a stack trace (backtrace) at runtime in a Rust program.
1414
autoexamples = true
1515
autotests = true
1616
edition = "2021"
17-
rust-version = "1.58.0"
17+
rust-version = "1.65.0"
1818

1919
[workspace]
2020
members = ['crates/cpp_smoke_test', 'crates/as-if-std']

crates/as-if-std/Cargo.toml

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,6 @@ name = "as-if-std"
33
version = "0.1.0"
44
authors = ["Alex Crichton <[email protected]>"]
55
edition = "2021"
6-
rust-version = "1.58.0"
76
publish = false
87

98
[lib]

crates/debuglink/Cargo.toml

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,6 @@
22
name = "debuglink"
33
version = "0.1.0"
44
edition = "2021"
5-
rust-version = "1.58.0"
65

76
[dependencies]
87
backtrace = { path = "../.." }

crates/dylib-dep/Cargo.toml

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,6 @@
22
name = "dylib-dep"
33
version = "0.1.0"
44
edition = "2021"
5-
rust-version = "1.58.0"
65
authors = []
76
publish = false
87

crates/line-tables-only/Cargo.toml

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,6 @@
22
name = "line-tables-only"
33
version = "0.1.0"
44
edition = "2021"
5-
rust-version = "1.58.0"
65

76
[build-dependencies]
87
cc = "1.0"

crates/macos_frames_test/Cargo.toml

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,6 @@ name = "macos_frames_test"
33
version = "0.1.0"
44
authors = ["Aaron Hill <[email protected]>"]
55
edition = "2021"
6-
rust-version = "1.58.0"
76

87
[dependencies.backtrace]
98
path = "../.."

crates/without_debuginfo/Cargo.toml

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,6 @@ name = "without_debuginfo"
33
version = "0.1.0"
44
authors = ["Alex Crichton <[email protected]>"]
55
edition = "2021"
6-
rust-version = "1.58.0"
76

87
[dependencies.backtrace]
98
path = "../.."

0 commit comments

Comments
 (0)