Skip to content

Commit bf1a40a

Browse files
authored
Updates crates to edition 2021 and bumps versions (#346)
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]>
1 parent c240c0f commit bf1a40a

File tree

5 files changed

+10
-10
lines changed

5 files changed

+10
-10
lines changed

.github/workflows/coverage.yml

+1-1
Original file line numberDiff line numberDiff line change
@@ -23,7 +23,7 @@ jobs:
2323
with:
2424
profile: minimal
2525
# nightly can be very volatile--pin this to a version we know works well...
26-
toolchain: nightly-2021-08-30
26+
toolchain: nightly-2022-01-10
2727
override: true
2828
- name: Cargo Test
2929
uses: actions-rs/cargo@v1

Cargo.toml

+2-2
Original file line numberDiff line numberDiff line change
@@ -16,8 +16,8 @@ exclude = [
1616
"**/ion-tests/iontestdata/**",
1717
"*.pdf"
1818
]
19-
version = "0.7.0"
20-
edition = "2018"
19+
version = "0.8.0"
20+
edition = "2021"
2121

2222
[workspace]
2323
members = [

ion-c-sys-macros/Cargo.toml

+2-2
Original file line numberDiff line numberDiff line change
@@ -12,8 +12,8 @@ exclude = [
1212
"**/.git/**",
1313
"**/.github/**",
1414
]
15-
version = "0.1.0"
16-
edition = "2018"
15+
version = "0.1.1"
16+
edition = "2021"
1717

1818
[lib]
1919
proc-macro = true

ion-c-sys/Cargo.toml

+2-2
Original file line numberDiff line numberDiff line change
@@ -16,8 +16,8 @@ exclude = [
1616
"**/ion-tests/iontestdata/**",
1717
"*.pdf"
1818
]
19-
version = "0.4.12"
20-
edition = "2018"
19+
version = "0.4.13"
20+
edition = "2021"
2121

2222
[dependencies]
2323
ion-c-sys-macros = { version = "0.1", path = "../ion-c-sys-macros" }

ion-hash/Cargo.toml

+3-3
Original file line numberDiff line numberDiff line change
@@ -16,11 +16,11 @@ exclude = [
1616
"**/ion-tests/iontestdata/**",
1717
"*.pdf"
1818
]
19-
version = "0.0.4"
20-
edition = "2018"
19+
version = "0.0.5"
20+
edition = "2021"
2121

2222
[dependencies]
23-
ion-rs = { path = "../", version = "0.7" }
23+
ion-rs = { path = "../", version = "0.8" }
2424
ion-c-sys = { path = "../ion-c-sys", version = "0.4" }
2525
num-bigint = "0.3"
2626
digest = "0.9"

0 commit comments

Comments
 (0)