Skip to content

Commit 216c780

Browse files
authored
Update (#5)
* Add lockfile * Cleanup * Use stable in CI * Fix CI warnings * Update CHANGELOG
1 parent 9f98728 commit 216c780

File tree

7 files changed

+1095
-48
lines changed

7 files changed

+1095
-48
lines changed

.github/workflows/rust-ci.yml

+7-16
Original file line numberDiff line numberDiff line change
@@ -16,11 +16,8 @@ jobs:
1616
name: Lint
1717
runs-on: ubuntu-20.04
1818
steps:
19-
- uses: actions/checkout@v2
20-
- uses: actions-rs/toolchain@v1
21-
with:
22-
toolchain: "1.56.0"
23-
override: true
19+
- uses: actions/checkout@v4
20+
- uses: dtolnay/rust-toolchain@stable
2421

2522
- run: rustup component add rustfmt
2623
- run: cargo fmt -- --check --color always
@@ -33,11 +30,8 @@ jobs:
3330
name: Test
3431
runs-on: ubuntu-20.04
3532
steps:
36-
- uses: actions/checkout@v2
37-
- uses: actions-rs/toolchain@v1
38-
with:
39-
toolchain: "1.56.0"
40-
override: true
33+
- uses: actions/checkout@v4
34+
- uses: dtolnay/rust-toolchain@stable
4135
- run: cargo fetch
4236
- name: cargo test build
4337
run: cargo build --tests --all-features
@@ -47,18 +41,15 @@ jobs:
4741
name: cargo-deny
4842
runs-on: ubuntu-20.04
4943
steps:
50-
- uses: actions/checkout@v2
44+
- uses: actions/checkout@v4
5145
- uses: EmbarkStudios/cargo-deny-action@v1
5246

5347
publish-check:
5448
name: Publish Check
5549
runs-on: ubuntu-20.04
5650
steps:
57-
- uses: actions/checkout@v2
58-
- uses: actions-rs/toolchain@v1
59-
with:
60-
toolchain: "1.56.0"
61-
override: true
51+
- uses: actions/checkout@v4
52+
- uses: dtolnay/rust-toolchain@stable
6253
- run: cargo fetch
6354
- name: cargo publish
6455
run: cargo publish --dry-run

CHANGELOG.md

+3
Original file line numberDiff line numberDiff line change
@@ -8,6 +8,9 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0
88

99
<!-- next-header -->
1010
## [Unreleased] - ReleaseDate
11+
### Changed
12+
- [PR#5](https://github.com/EmbarkStudios/clearly-defined/pull/5) updated http and reqwest dependencies, and got rid of the `native-tls` and `rustls` features in favor of always using `rustls-tls`.
13+
1114
## [0.2.1] - 2022-02-04
1215
### Changed
1316
- [PR#3](https://github.com/EmbarkStudios/clearly-defined/pull/3) removed usage of `chrono`.

0 commit comments

Comments
 (0)