Update lockfile (#854)

Update lockfile (exa now requires Rust 1.45.2 or higher)

Co-authored-by: Mélanie Chauvel <perso@hack-libre.org>
This commit is contained in:
Haren S 2021-04-26 22:37:32 +01:00 committed by GitHub
parent 293372a613
commit 90b97753ad
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
3 changed files with 15 additions and 15 deletions

View File

@ -1,6 +1,6 @@
language: rust language: rust
rust: rust:
- 1.42.0 - 1.45.2
- stable - stable
- beta - beta
- nightly - nightly

22
Cargo.lock generated
View File

@ -57,7 +57,7 @@ dependencies = [
[[package]] [[package]]
name = "exa" name = "exa"
version = "0.11.0-pre" version = "0.10.1"
dependencies = [ dependencies = [
"ansi_term", "ansi_term",
"datetime", "datetime",
@ -90,9 +90,9 @@ dependencies = [
[[package]] [[package]]
name = "git2" name = "git2"
version = "0.13.17" version = "0.13.18"
source = "registry+https://github.com/rust-lang/crates.io-index" source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "1d250f5f82326884bd39c2853577e70a121775db76818ffa452ed1e80de12986" checksum = "b483c6c2145421099df1b4efd50e0f6205479a072199460eff852fa15e5603c7"
dependencies = [ dependencies = [
"bitflags", "bitflags",
"libc", "libc",
@ -119,9 +119,9 @@ dependencies = [
[[package]] [[package]]
name = "idna" name = "idna"
version = "0.2.2" version = "0.2.3"
source = "registry+https://github.com/rust-lang/crates.io-index" source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "89829a5d69c23d348314a7ac337fe39173b61149a9864deabd260983aed48c21" checksum = "418a0a6fab821475f634efe3ccc45c013f742efe03d853e8d3355d5cb850ecf8"
dependencies = [ dependencies = [
"matches", "matches",
"unicode-bidi", "unicode-bidi",
@ -130,9 +130,9 @@ dependencies = [
[[package]] [[package]]
name = "jobserver" name = "jobserver"
version = "0.1.21" version = "0.1.22"
source = "registry+https://github.com/rust-lang/crates.io-index" source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "5c71313ebb9439f74b00d9d2dcec36440beaf57a6aa0623068441dd7cd81a7f2" checksum = "972f5ae5d1cb9c6ae417789196c803205313edde988685da5e3aae0827b9e7fd"
dependencies = [ dependencies = [
"libc", "libc",
] ]
@ -151,9 +151,9 @@ checksum = "9385f66bf6105b241aa65a61cb923ef20efc665cb9f9bb50ac2f0c4b7f378d41"
[[package]] [[package]]
name = "libgit2-sys" name = "libgit2-sys"
version = "0.12.18+1.1.0" version = "0.12.19+1.1.0"
source = "registry+https://github.com/rust-lang/crates.io-index" source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "3da6a42da88fc37ee1ecda212ffa254c25713532980005d5f7c0b0fbe7e6e885" checksum = "f322155d574c8b9ebe991a04f6908bb49e68a79463338d24a43d6274cb6443e6"
dependencies = [ dependencies = [
"cc", "cc",
"libc", "libc",
@ -357,9 +357,9 @@ dependencies = [
[[package]] [[package]]
name = "vcpkg" name = "vcpkg"
version = "0.2.11" version = "0.2.12"
source = "registry+https://github.com/rust-lang/crates.io-index" source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "b00bca6106a5e23f3eee943593759b7fcddb00554332e856d990c893966879fb" checksum = "cbdbff6266a24120518560b5dc983096efb98462e51d0d68169895b237be3e5d"
[[package]] [[package]]
name = "winapi" name = "winapi"

View File

@ -201,8 +201,8 @@ To build without Git support, run `cargo install --no-default-features exa` is a
<a id="development"> <a id="development">
<h1>Development <h1>Development
<a href="https://blog.rust-lang.org/2020/03/12/Rust-1.42.html"> <a href="https://blog.rust-lang.org/2020/08/03/Rust-1.45.2.html">
<img src="https://img.shields.io/badge/rustc-1.42+-lightgray.svg" alt="Rust 1.42+" /> <img src="https://img.shields.io/badge/rustc-1.45.2+-lightgray.svg" alt="Rust 1.45.2+" />
</a> </a>
<a href="https://github.com/ogham/exa/blob/master/LICENCE"> <a href="https://github.com/ogham/exa/blob/master/LICENCE">
@ -211,7 +211,7 @@ To build without Git support, run `cargo install --no-default-features exa` is a
</h1></a> </h1></a>
exa is written in [Rust](https://www.rust-lang.org/). exa is written in [Rust](https://www.rust-lang.org/).
You will need rustc version 1.42.0 or higher. You will need rustc version 1.45.2 or higher.
The recommended way to install Rust for development is from the [official download page](https://www.rust-lang.org/tools/install), using rustup. The recommended way to install Rust for development is from the [official download page](https://www.rust-lang.org/tools/install), using rustup.
Once Rust is installed, you can compile exa with Cargo: Once Rust is installed, you can compile exa with Cargo: