Skip to content

Commit 328d4ec

Browse files
committed
Specify MSRV in cargo.toml
1 parent 4073ee2 commit 328d4ec

File tree

7 files changed

+7
-0
lines changed

7 files changed

+7
-0
lines changed

Cargo.toml

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -14,6 +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"
1718

1819
[workspace]
1920
members = ['crates/cpp_smoke_test', 'crates/as-if-std']

crates/as-if-std/Cargo.toml

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

89
[lib]

crates/debuglink/Cargo.toml

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

67
[dependencies]
78
backtrace = { path = "../.." }

crates/dylib-dep/Cargo.toml

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -2,6 +2,7 @@
22
name = "dylib-dep"
33
version = "0.1.0"
44
edition = "2021"
5+
rust-version = "1.58.0"
56
authors = []
67
publish = false
78

crates/line-tables-only/Cargo.toml

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

67
[build-dependencies]
78
cc = "1.0"

crates/macos_frames_test/Cargo.toml

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

78
[dependencies.backtrace]
89
path = "../.."

crates/without_debuginfo/Cargo.toml

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

78
[dependencies.backtrace]
89
path = "../.."

0 commit comments

Comments
 (0)