Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

CI: nightly -> stable #295

Merged
merged 1 commit into from
May 14, 2024
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
8 changes: 4 additions & 4 deletions .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -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
Expand All @@ -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
Expand Down Expand Up @@ -77,15 +77,15 @@ 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:
name: Clippy
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
Expand Down
2 changes: 1 addition & 1 deletion dhcp/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -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]
Expand Down
2 changes: 1 addition & 1 deletion dns/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -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]
Expand Down
2 changes: 1 addition & 1 deletion hl/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -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]
Expand Down
2 changes: 1 addition & 1 deletion ll/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -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 }
Expand Down
2 changes: 1 addition & 1 deletion mqtt/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -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 }
Expand Down
2 changes: 1 addition & 1 deletion sntp/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -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 }
Expand Down
2 changes: 1 addition & 1 deletion tls/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -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 }

Expand Down