Skip to content

Commit fe14834

Browse files
committed
bump edition to 2021 and MSRV to 1.60.0
1 parent e499709 commit fe14834

File tree

3 files changed

+6
-3
lines changed

3 files changed

+6
-3
lines changed

.github/workflows/ci.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -46,7 +46,7 @@ jobs:
4646
runs-on: ${{ matrix.os }}
4747
strategy:
4848
matrix:
49-
rust_version: ['1.51.0', 'stable', 'nightly']
49+
rust_version: ['1.60.0', 'stable', 'nightly']
5050
os: [ubuntu-latest, windows-latest, macOS-latest]
5151
steps:
5252
- uses: actions/checkout@v2

Cargo.toml

Lines changed: 3 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,8 @@
22
name = "quanta"
33
version = "0.10.1"
44
authors = ["Toby Lawrence <toby@nuclearfurnace.com>"]
5-
edition = "2018"
5+
edition = "2021"
6+
rust-version = "1.60"
67

78
license = "MIT"
89

@@ -33,7 +34,7 @@ prost = ["prost-types"]
3334

3435
[dependencies]
3536
once_cell = "1.4"
36-
prost-types = { version = "0.11", optional = true }
37+
prost-types = { version = "0.11", default-features = false, optional = true }
3738
crossbeam-utils = "0.8.5"
3839

3940
[target.'cfg(target_arch = "x86")'.dependencies]

rust-toolchain.toml

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,2 @@
1+
[toolchain]
2+
channel = "stable"

0 commit comments

Comments
 (0)