Skip to content

Commit

Permalink
Version bump and edition upgrade
Browse files Browse the repository at this point in the history
  • Loading branch information
nbdd0121 committed Oct 28, 2023
1 parent fdf70d1 commit ad1b65a
Show file tree
Hide file tree
Showing 7 changed files with 93 additions and 7 deletions.
1 change: 0 additions & 1 deletion .gitignore
Original file line number Diff line number Diff line change
@@ -1,3 +1,2 @@
.vscode/
target
Cargo.lock
87 changes: 87 additions & 0 deletions Cargo.lock

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

4 changes: 2 additions & 2 deletions Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,8 +1,8 @@
[package]
name = "unwinding"
version = "0.2.0"
version = "0.2.1"
authors = ["Gary Guo <[email protected]>"]
edition = "2018"
edition = "2021"
license = "MIT OR Apache-2.0"
description = "Unwinding library in Rust and for Rust"
repository = "https://github.com/nbdd0121/unwinding/"
Expand Down
2 changes: 1 addition & 1 deletion cdylib/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@
name = "unwinding_dyn"
version = "0.1.0"
authors = ["Gary Guo <[email protected]>"]
edition = "2018"
edition = "2021"

[lib]
crate-type = ["cdylib", "staticlib"]
Expand Down
2 changes: 1 addition & 1 deletion test_crates/catch_std_exception/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
[package]
name = "catch_std_exception"
version = "0.1.0"
edition = "2018"
edition = "2021"

[dependencies]
unwinding = { path = "../../", features = ["panic"] }
Expand Down
2 changes: 1 addition & 1 deletion test_crates/std_catch_exception/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
[package]
name = "std_catch_exception"
version = "0.1.0"
edition = "2018"
edition = "2021"

[dependencies]
unwinding = { path = "../../", features = ["panic"] }
Expand Down
2 changes: 1 addition & 1 deletion test_crates/throw_and_catch/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
[package]
name = "throw_and_catch"
version = "0.1.0"
edition = "2018"
edition = "2021"

[dependencies]
unwinding = { path = "../..", features = ["system-alloc", "personality", "panic-handler"] }
Expand Down

0 comments on commit ad1b65a

Please sign in to comment.