From b68599dd8922002a3e72887404aca7277aa84996 Mon Sep 17 00:00:00 2001 From: Alex Martens Date: Tue, 9 Jan 2024 19:01:08 -0800 Subject: [PATCH] CI: nightly -> stable --- .github/workflows/ci.yml | 8 ++++---- dhcp/Cargo.toml | 2 +- dns/Cargo.toml | 2 +- hl/Cargo.toml | 2 +- ll/Cargo.toml | 2 +- mqtt/Cargo.toml | 2 +- sntp/Cargo.toml | 2 +- tls/Cargo.toml | 2 +- 8 files changed, 11 insertions(+), 11 deletions(-) diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml index 5c75e5ee..f895559d 100644 --- a/.github/workflows/ci.yml +++ b/.github/workflows/ci.yml @@ -17,7 +17,7 @@ jobs: env: {"RUSTFLAGS": "-D warnings"} steps: - uses: actions/checkout@v4 - - uses: dtolnay/rust-toolchain@nightly # 1.77 + - uses: dtolnay/rust-toolchain@stable - run: cargo build - run: cargo build --all-features - run: cargo build -p testsuite @@ -33,7 +33,7 @@ jobs: - "thumbv7em-none-eabi" steps: - uses: actions/checkout@v4 - - uses: dtolnay/rust-toolchain@nightly # 1.77 + - uses: dtolnay/rust-toolchain@stable with: target: ${{ matrix.target }} - run: cargo build --target ${{ matrix.target }} -p w5500-ll @@ -77,7 +77,7 @@ jobs: env: {"RUSTFLAGS": "-D warnings"} steps: - uses: actions/checkout@v4 - - uses: dtolnay/rust-toolchain@nightly # 1.77 + - uses: dtolnay/rust-toolchain@stable - run: cargo test-all clippy: @@ -85,7 +85,7 @@ jobs: runs-on: ubuntu-latest steps: - uses: actions/checkout@v4 - - uses: dtolnay/rust-toolchain@nightly # 1.77 + - uses: dtolnay/rust-toolchain@stable with: components: clippy - run: cargo clippy --all-features --all-targets -- --deny warnings diff --git a/dhcp/Cargo.toml b/dhcp/Cargo.toml index 7ad16dde..38191bb5 100644 --- a/dhcp/Cargo.toml +++ b/dhcp/Cargo.toml @@ -18,7 +18,7 @@ eh1 = ["w5500-hl/eh1"] [dependencies] w5500-hl = { path = "../hl", version = "0.11.0" } -defmt = { version = "0.3.4", optional = true, features = ["ip_in_core"] } +defmt = { version = "0.3.7", optional = true } log = { version = "0.4", optional = true } [dev-dependencies] diff --git a/dns/Cargo.toml b/dns/Cargo.toml index a92892a2..578d7ea6 100644 --- a/dns/Cargo.toml +++ b/dns/Cargo.toml @@ -18,7 +18,7 @@ eh1 = ["w5500-hl/eh1"] [dependencies] w5500-hl = { path = "../hl", version = "0.11.0" } -defmt = { version = "0.3.4", optional = true, features = ["ip_in_core"] } +defmt = { version = "0.3.7", optional = true } log = { version = "0.4", optional = true } [dev-dependencies] diff --git a/hl/Cargo.toml b/hl/Cargo.toml index 5fa00cf9..a16ed980 100644 --- a/hl/Cargo.toml +++ b/hl/Cargo.toml @@ -17,7 +17,7 @@ eh0 = ["w5500-ll/eh0"] eh1 = ["w5500-ll/eh1"] [dependencies] -defmt = { version = "0.3.4", optional = true, features = ["ip_in_core"] } +defmt = { version = "0.3.7", optional = true } w5500-ll = { path = "../ll", version = "0.12.0" } [dev-dependencies] diff --git a/ll/Cargo.toml b/ll/Cargo.toml index 0a258447..c9786e51 100644 --- a/ll/Cargo.toml +++ b/ll/Cargo.toml @@ -17,7 +17,7 @@ eh1 = ["dep:eh1"] eha1 = ["dep:eha1", "dep:eh1"] [dependencies] -defmt = { version = "0.3.4", optional = true, features = ["ip_in_core"] } +defmt = { version = "0.3.7", optional = true } eh0 = { package = "embedded-hal", version = "0.2.7", optional = true } eh1 = { package = "embedded-hal", version = "1", optional = true } eha1 = { package = "embedded-hal-async", version = "1", optional = true } diff --git a/mqtt/Cargo.toml b/mqtt/Cargo.toml index 461a95e4..3cca792a 100644 --- a/mqtt/Cargo.toml +++ b/mqtt/Cargo.toml @@ -20,7 +20,7 @@ p256-cm4 = ["w5500-tls?/p256-cm4"] w5500-tls = ["dep:w5500-tls"] [dependencies] -defmt = { version = "0.3.4", optional = true, features = ["ip_in_core"] } +defmt = { version = "0.3.7", optional = true } log = { version = "0.4", optional = true } w5500-hl = { path = "../hl", version = "0.11.0" } w5500-tls = { path = "../tls", version = "0.3.0", optional = true } diff --git a/sntp/Cargo.toml b/sntp/Cargo.toml index 6c9319f3..8d1e7291 100644 --- a/sntp/Cargo.toml +++ b/sntp/Cargo.toml @@ -21,7 +21,7 @@ time = ["dep:time"] [dependencies] chrono = { version = "0.4.32", default-features = false, optional = true } -defmt = { version = "0.3.4", optional = true, features = ["ip_in_core"] } +defmt = { version = "0.3.7", optional = true } log = { version = "0.4", default-features = false, optional = true } num-rational = { version = "0.4", default-features = false, optional = true } time = { version = "0.3", default-features = false, optional = true } diff --git a/tls/Cargo.toml b/tls/Cargo.toml index bb0b988e..adb00682 100644 --- a/tls/Cargo.toml +++ b/tls/Cargo.toml @@ -29,7 +29,7 @@ sha2 = { version = "0.10", default-features = false } subtle = { version = "2", default-features = false } # optional -defmt = { version = "0.3.4", optional = true, features = ["ip_in_core"] } +defmt = { version = "0.3.7", optional = true } log = { version = "0.4", optional = true } p256-cm4 = { version = "0.3", optional = true }