mirror of
https://github.com/eliasstepanik/imgui-rs.git
synced 2026-01-11 05:28:35 +00:00
Re-enable winit default features during CI
This commit is contained in:
parent
481a72fda6
commit
b3cf8ca4a6
8
.github/workflows/ci.yml
vendored
8
.github/workflows/ci.yml
vendored
@ -51,8 +51,8 @@ jobs:
|
|||||||
- run: cargo clippy --manifest-path imgui-winit-support/Cargo.toml --no-default-features --features winit-19 --all-targets
|
- run: cargo clippy --manifest-path imgui-winit-support/Cargo.toml --no-default-features --features winit-19 --all-targets
|
||||||
- run: cargo clippy --manifest-path imgui-winit-support/Cargo.toml --no-default-features --features winit-20 --all-targets
|
- run: cargo clippy --manifest-path imgui-winit-support/Cargo.toml --no-default-features --features winit-20 --all-targets
|
||||||
- run: cargo clippy --manifest-path imgui-winit-support/Cargo.toml --no-default-features --features winit-22 --all-targets
|
- run: cargo clippy --manifest-path imgui-winit-support/Cargo.toml --no-default-features --features winit-22 --all-targets
|
||||||
- run: cargo clippy --manifest-path imgui-winit-support/Cargo.toml --no-default-features --features winit-23 --all-targets
|
- run: cargo clippy --manifest-path imgui-winit-support/Cargo.toml --no-default-features --features winit-23/default --all-targets
|
||||||
- run: cargo clippy --manifest-path imgui-winit-support/Cargo.toml --no-default-features --features winit-24 --all-targets
|
- run: cargo clippy --manifest-path imgui-winit-support/Cargo.toml --no-default-features --features winit-24/default --all-targets
|
||||||
rustfmt:
|
rustfmt:
|
||||||
name: Check rustfmt
|
name: Check rustfmt
|
||||||
runs-on: ubuntu-latest
|
runs-on: ubuntu-latest
|
||||||
@ -138,8 +138,8 @@ jobs:
|
|||||||
- run: cargo test --manifest-path imgui-winit-support/Cargo.toml --no-default-features --features winit-19
|
- run: cargo test --manifest-path imgui-winit-support/Cargo.toml --no-default-features --features winit-19
|
||||||
- run: cargo test --manifest-path imgui-winit-support/Cargo.toml --no-default-features --features winit-20
|
- run: cargo test --manifest-path imgui-winit-support/Cargo.toml --no-default-features --features winit-20
|
||||||
- run: cargo test --manifest-path imgui-winit-support/Cargo.toml --no-default-features --features winit-22
|
- run: cargo test --manifest-path imgui-winit-support/Cargo.toml --no-default-features --features winit-22
|
||||||
- run: cargo test --manifest-path imgui-winit-support/Cargo.toml --no-default-features --features winit-23
|
- run: cargo test --manifest-path imgui-winit-support/Cargo.toml --no-default-features --features winit-23/default
|
||||||
- run: cargo test --manifest-path imgui-winit-support/Cargo.toml --no-default-features --features winit-24
|
- run: cargo test --manifest-path imgui-winit-support/Cargo.toml --no-default-features --features winit-24/default
|
||||||
# Run unreasonably slow tests under release, but only the crates that have
|
# Run unreasonably slow tests under release, but only the crates that have
|
||||||
# them, and don't bother doing this on most platforms.
|
# them, and don't bother doing this on most platforms.
|
||||||
- run: cargo test -p imgui --release -- --ignored
|
- run: cargo test -p imgui --release -- --ignored
|
||||||
|
|||||||
@ -11,9 +11,9 @@ categories = ["gui"]
|
|||||||
|
|
||||||
[dependencies]
|
[dependencies]
|
||||||
imgui = { version = "0.7.0", path = "../imgui" }
|
imgui = { version = "0.7.0", path = "../imgui" }
|
||||||
winit-19 = { version = ">= 0.16, < 0.20", package = "winit", default-features = false, optional = true }
|
winit-19 = { version = ">= 0.16, < 0.20", package = "winit", optional = true }
|
||||||
winit-20 = { version = ">= 0.20, < 0.22", package = "winit", default-features = false, optional = true }
|
winit-20 = { version = ">= 0.20, < 0.22", package = "winit", optional = true }
|
||||||
winit-22 = { version = "0.22", package = "winit", default-features = false, optional = true }
|
winit-22 = { version = "0.22", package = "winit", optional = true }
|
||||||
winit-23 = { version = "0.23", package = "winit", default-features = false, optional = true }
|
winit-23 = { version = "0.23", package = "winit", default-features = false, optional = true }
|
||||||
winit-24 = { version = "0.24", package = "winit", default-features = false, optional = true }
|
winit-24 = { version = "0.24", package = "winit", default-features = false, optional = true }
|
||||||
|
|
||||||
|
|||||||
Loading…
x
Reference in New Issue
Block a user