diff options
author | Jonas Platte <jplatte+git@posteo.de> | 2020-12-30 23:17:53 +0100 |
---|---|---|
committer | Jonas Platte <jplatte+git@posteo.de> | 2020-12-30 23:17:56 +0100 |
commit | 0e4aec06f2a30f67c287cfc98015da9fcf15562f (patch) | |
tree | 86e0794800c786dfcd3fd96e4ed75e838795d921 /.github/workflows | |
parent | 7225dbbce51bee656f9057fe61a930eb1f94af88 (diff) | |
download | rust-openssl-0e4aec06f2a30f67c287cfc98015da9fcf15562f.zip |
Switch from lazy_static to once_cell
This also changes the MSRV from 1.34.0 to 1.36.0.
Diffstat (limited to '.github/workflows')
-rw-r--r-- | .github/workflows/ci.yml | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml index 9a09c6ad..37e8565b 100644 --- a/.github/workflows/ci.yml +++ b/.github/workflows/ci.yml @@ -63,7 +63,7 @@ jobs: steps: - uses: actions/checkout@v2 - name: Install Rust - run: rustup update --no-self-update 1.34.0 && rustup default 1.34.0 + run: rustup update --no-self-update 1.36.0 && rustup default 1.36.0 - name: Get rust version id: rust-version run: echo "::set-output name=version::$(rustc --version)" |