Skip to content

Commit

Permalink
update minimum Rust version to 1.64
Browse files Browse the repository at this point in the history
Apparently the new clap release needs this.
  • Loading branch information
scottlamb committed Jan 31, 2023
1 parent 013e0bf commit df5aefc
Show file tree
Hide file tree
Showing 5 changed files with 5 additions and 3 deletions.
2 changes: 1 addition & 1 deletion .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,7 @@ jobs:
matrix:
rust:
- stable
- 1.59
- 1.64
include:
- rust: stable
extra_components: rustfmt
Expand Down
1 change: 1 addition & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,6 @@
## unreleased

* minimum Rust version is now 1.64.
* 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
`v0.4.2` notes below.
Expand Down
2 changes: 1 addition & 1 deletion Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -13,7 +13,7 @@ categories = ["network-programming", "multimedia"]
description = "high-level RTSP multimedia streaming library"
repository = "https://github.com/scottlamb/retina"
include = ["src/**/*", "benches", "Cargo.toml"]
rust-version = "1.59"
rust-version = "1.64"

[dependencies]
base64 = "0.13.0"
Expand Down
2 changes: 1 addition & 1 deletion examples/client/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@ name = "client"
version = "0.0.0"
publish = false
edition = "2021"
rust-version = "1.59"
rust-version = "1.64"

[dependencies]
bytes = "1.0.1"
Expand Down
1 change: 1 addition & 0 deletions examples/webrtc-proxy/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -2,6 +2,7 @@
name = "webrtc-proxy"
version = "0.1.0"
edition = "2021"
rust-version = "1.64"

# See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html

Expand Down

0 comments on commit df5aefc

Please sign in to comment.