update minimum Rust version to 1.64

Apparently the new clap release needs this.
This commit is contained in:
Scott Lamb 2023-01-30 22:25:19 -08:00
parent 013e0bf970
commit df5aefc03b
No known key found for this signature in database
5 changed files with 5 additions and 3 deletions

View File

@ -12,7 +12,7 @@ jobs:
matrix: matrix:
rust: rust:
- stable - stable
- 1.59 - 1.64
include: include:
- rust: stable - rust: stable
extra_components: rustfmt extra_components: rustfmt

View File

@ -1,5 +1,6 @@
## unreleased ## unreleased
* minimum Rust version is now 1.64.
* remove obsolete workaround for GW security GW security GW4089IP's bad out-of-band parameters. * remove obsolete workaround for GW security GW security GW4089IP's bad out-of-band parameters.
Instead, we treat them as unparseable and ignore them as described in the Instead, we treat them as unparseable and ignore them as described in the
`v0.4.2` notes below. `v0.4.2` notes below.

View File

@ -13,7 +13,7 @@ categories = ["network-programming", "multimedia"]
description = "high-level RTSP multimedia streaming library" description = "high-level RTSP multimedia streaming library"
repository = "https://github.com/scottlamb/retina" repository = "https://github.com/scottlamb/retina"
include = ["src/**/*", "benches", "Cargo.toml"] include = ["src/**/*", "benches", "Cargo.toml"]
rust-version = "1.59" rust-version = "1.64"
[dependencies] [dependencies]
base64 = "0.13.0" base64 = "0.13.0"

View File

@ -3,7 +3,7 @@ name = "client"
version = "0.0.0" version = "0.0.0"
publish = false publish = false
edition = "2021" edition = "2021"
rust-version = "1.59" rust-version = "1.64"
[dependencies] [dependencies]
bytes = "1.0.1" bytes = "1.0.1"

View File

@ -2,6 +2,7 @@
name = "webrtc-proxy" name = "webrtc-proxy"
version = "0.1.0" version = "0.1.0"
edition = "2021" edition = "2021"
rust-version = "1.64"
# See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html # See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html