Skip to content

Commit

Permalink
Updates crates to edition 2021 and bumps versions (#346)
Browse files Browse the repository at this point in the history
This PR updates the Rust edition of:

* ion-rs
* ion-hash
* ion-c-sys-macros
* ion-c-sys

from 2018 to 2021. No code changes were required. This patch also
bumps their respective versions.

* Update pinned version of nightly

Co-authored-by: Zack Slayton <[email protected]>
  • Loading branch information
zslayton and zslayton authored Jan 10, 2022
1 parent c240c0f commit bf1a40a
Show file tree
Hide file tree
Showing 5 changed files with 10 additions and 10 deletions.
2 changes: 1 addition & 1 deletion .github/workflows/coverage.yml
Original file line number Diff line number Diff line change
Expand Up @@ -23,7 +23,7 @@ jobs:
with:
profile: minimal
# nightly can be very volatile--pin this to a version we know works well...
toolchain: nightly-2021-08-30
toolchain: nightly-2022-01-10
override: true
- name: Cargo Test
uses: actions-rs/cargo@v1
Expand Down
4 changes: 2 additions & 2 deletions Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -16,8 +16,8 @@ exclude = [
"**/ion-tests/iontestdata/**",
"*.pdf"
]
version = "0.7.0"
edition = "2018"
version = "0.8.0"
edition = "2021"

[workspace]
members = [
Expand Down
4 changes: 2 additions & 2 deletions ion-c-sys-macros/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -12,8 +12,8 @@ exclude = [
"**/.git/**",
"**/.github/**",
]
version = "0.1.0"
edition = "2018"
version = "0.1.1"
edition = "2021"

[lib]
proc-macro = true
Expand Down
4 changes: 2 additions & 2 deletions ion-c-sys/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -16,8 +16,8 @@ exclude = [
"**/ion-tests/iontestdata/**",
"*.pdf"
]
version = "0.4.12"
edition = "2018"
version = "0.4.13"
edition = "2021"

[dependencies]
ion-c-sys-macros = { version = "0.1", path = "../ion-c-sys-macros" }
Expand Down
6 changes: 3 additions & 3 deletions ion-hash/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -16,11 +16,11 @@ exclude = [
"**/ion-tests/iontestdata/**",
"*.pdf"
]
version = "0.0.4"
edition = "2018"
version = "0.0.5"
edition = "2021"

[dependencies]
ion-rs = { path = "../", version = "0.7" }
ion-rs = { path = "../", version = "0.8" }
ion-c-sys = { path = "../ion-c-sys", version = "0.4" }
num-bigint = "0.3"
digest = "0.9"
Expand Down

0 comments on commit bf1a40a

Please sign in to comment.