diff --git a/.github/workflows/build-msrv.yml b/.github/workflows/build-msrv.yml index 68eec5bc..d5bf1211 100644 --- a/.github/workflows/build-msrv.yml +++ b/.github/workflows/build-msrv.yml @@ -28,9 +28,9 @@ jobs: - name: Install Rust run: | rustup set profile minimal - rustup toolchain install 1.80 - rustup default 1.80 - rustup override set 1.80 + rustup toolchain install 1.83 + rustup default 1.83 + rustup override set 1.83 - name: Build with All Features Enabled (Unix) if: ${{ runner.os == 'Linux' || runner.os == 'macOS' }} run: cargo build --verbose --features "full-extra local-flow-stat utility-url-outline" @@ -55,9 +55,9 @@ jobs: - name: Install Rust run: | rustup set profile minimal - rustup toolchain install 1.80 - rustup default 1.80 - rustup override set 1.80 + rustup toolchain install 1.83 + rustup default 1.83 + rustup override set 1.83 - name: Build with All Features Enabled run: cargo build --manifest-path crates/shadowsocks-service/Cargo.toml --verbose --features "full dns-over-tls dns-over-https dns-over-h3 local-dns local-flow-stat local-http-rustls local-tun local-fake-dns local-online-config stream-cipher aead-cipher-extra aead-cipher-2022 aead-cipher-2022-extra security-replay-attack-detect" diff --git a/Cargo.lock b/Cargo.lock index 6f17d708..35178e1a 100644 --- a/Cargo.lock +++ b/Cargo.lock @@ -956,9 +956,9 @@ dependencies = [ [[package]] name = "etherparse" -version = "0.16.0" +version = "0.17.0" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "b8d8a704b617484e9d867a0423cd45f7577f008c4068e2e33378f8d3860a6d73" +checksum = "b14e4ac78394e3ea04edbbc412099cf54f2f52ded51efb79c466a282729399d2" dependencies = [ "arrayvec", ] diff --git a/Cargo.toml b/Cargo.toml index 6d1b2417..f94fada0 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -9,7 +9,7 @@ documentation = "https://docs.rs/shadowsocks-rust" keywords = ["shadowsocks", "proxy", "socks", "socks5", "firewall"] license = "MIT" edition = "2021" -rust-version = "1.80" +rust-version = "1.83" [badges] maintenance = { status = "passively-maintained" } diff --git a/crates/shadowsocks-service/Cargo.toml b/crates/shadowsocks-service/Cargo.toml index 415f91bf..26bf610e 100644 --- a/crates/shadowsocks-service/Cargo.toml +++ b/crates/shadowsocks-service/Cargo.toml @@ -9,7 +9,7 @@ documentation = "https://docs.rs/shadowsocks-service" keywords = ["shadowsocks", "proxy", "socks", "socks5", "firewall"] license = "MIT" edition = "2021" -rust-version = "1.80" +rust-version = "1.83" [badges] maintenance = { status = "passively-maintained" } @@ -181,7 +181,7 @@ brotli = { version = "7.0", optional = true } zstd = { version = "0.13", optional = true } tun = { version = "0.7", optional = true, features = ["async"] } -etherparse = { version = "0.16", optional = true } +etherparse = { version = "0.17", optional = true } smoltcp = { version = "0.12", optional = true, default-features = false, features = [ "std", "log",