upgrade Rust deps
This commit is contained in:
parent
cc34a1aef5
commit
689765ea97
|
@ -11,7 +11,7 @@ jobs:
|
||||||
name: Rust ${{ matrix.rust }}
|
name: Rust ${{ matrix.rust }}
|
||||||
strategy:
|
strategy:
|
||||||
matrix:
|
matrix:
|
||||||
rust: [ "stable", "1.60", "nightly" ]
|
rust: [ "stable", "1.64", "nightly" ]
|
||||||
include:
|
include:
|
||||||
- rust: nightly
|
- rust: nightly
|
||||||
extra_args: "--features nightly --benches"
|
extra_args: "--features nightly --benches"
|
||||||
|
|
|
@ -13,6 +13,7 @@ even on minor releases, e.g. `0.7.5` -> `0.7.6`.
|
||||||
|
|
||||||
## unreleased
|
## unreleased
|
||||||
|
|
||||||
|
* bump minimum Rust version to 1.64.
|
||||||
* expect camelCase in `moonfire-nvr.toml` file, for consistency with the JSON
|
* expect camelCase in `moonfire-nvr.toml` file, for consistency with the JSON
|
||||||
API. You'll need to adjust your config file when upgrading.
|
API. You'll need to adjust your config file when upgrading.
|
||||||
* use Retina 0.4.4.
|
* use Retina 0.4.4.
|
||||||
|
|
|
@ -207,7 +207,7 @@ following command:
|
||||||
$ brew install node
|
$ brew install node
|
||||||
```
|
```
|
||||||
|
|
||||||
Next, you need Rust 1.60+ and Cargo. The easiest way to install them is by
|
Next, you need Rust 1.64+ and Cargo. The easiest way to install them is by
|
||||||
following the instructions at [rustup.rs](https://www.rustup.rs/). Avoid
|
following the instructions at [rustup.rs](https://www.rustup.rs/). Avoid
|
||||||
your Linux distribution's Rust packages, which tend to be too old.
|
your Linux distribution's Rust packages, which tend to be too old.
|
||||||
(At least on Debian-based systems; Arch and Gentoo might be okay.)
|
(At least on Debian-based systems; Arch and Gentoo might be okay.)
|
||||||
|
|
File diff suppressed because it is too large
Load Diff
|
@ -5,7 +5,7 @@ authors = ["Scott Lamb <slamb@slamb.org>"]
|
||||||
edition = "2018"
|
edition = "2018"
|
||||||
resolver = "2"
|
resolver = "2"
|
||||||
license-file = "../LICENSE.txt"
|
license-file = "../LICENSE.txt"
|
||||||
rust-version = "1.60"
|
rust-version = "1.64"
|
||||||
|
|
||||||
[features]
|
[features]
|
||||||
|
|
||||||
|
@ -27,7 +27,7 @@ blake3 = "1.0.0"
|
||||||
bytes = "1"
|
bytes = "1"
|
||||||
byteorder = "1.0"
|
byteorder = "1.0"
|
||||||
clap = { version = "2.33.3", default-features = false, features = ["color", "wrap_help"] }
|
clap = { version = "2.33.3", default-features = false, features = ["color", "wrap_help"] }
|
||||||
cursive = "0.19.0"
|
cursive = "0.20.0"
|
||||||
db = { package = "moonfire-db", path = "db" }
|
db = { package = "moonfire-db", path = "db" }
|
||||||
failure = "0.1.1"
|
failure = "0.1.1"
|
||||||
futures = "0.3"
|
futures = "0.3"
|
||||||
|
@ -85,3 +85,6 @@ lto = true
|
||||||
|
|
||||||
[profile.bench]
|
[profile.bench]
|
||||||
debug = 1
|
debug = 1
|
||||||
|
|
||||||
|
[patch.crates-io]
|
||||||
|
hashlink = { git = "https://github.com/scottlamb/hashlink", rev = "26715ca0efe3f1773a0a22bbde8e36cafcaaed52" }
|
||||||
|
|
Loading…
Reference in New Issue