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

chore: Allow compiling without windowing system #65

Merged
merged 1 commit into from
Oct 2, 2023
Merged
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
3 changes: 0 additions & 3 deletions src/lib.rs
Original file line number Diff line number Diff line change
Expand Up @@ -166,9 +166,6 @@
#![cfg_attr(docsrs, feature(doc_auto_cfg))]
#![cfg_attr(docsrs, feature(doc_cfg))]

#[cfg(all(not(feature = "wayland"), not(feature = "winit")))]
compile_error!("must define `wayland` or `winit` feature");

#[cfg(all(feature = "wayland", feature = "winit"))]
compile_error!("cannot use `wayland` feature with `winit");

Expand Down Expand Up @@ -303,10 +300,10 @@
pub use iced_widget::*;

// We hide the re-exported modules by `iced_widget`
mod core {}

Check warning on line 303 in src/lib.rs

View workflow job for this annotation

GitHub Actions / native (macOS-latest, stable)

private item shadows public glob re-export

Check warning on line 303 in src/lib.rs

View workflow job for this annotation

GitHub Actions / native (macOS-latest, beta)

private item shadows public glob re-export

Check warning on line 303 in src/lib.rs

View workflow job for this annotation

GitHub Actions / native (macOS-latest, stable)

private item shadows public glob re-export

Check warning on line 303 in src/lib.rs

View workflow job for this annotation

GitHub Actions / native (macOS-latest, beta)

private item shadows public glob re-export

Check warning on line 303 in src/lib.rs

View workflow job for this annotation

GitHub Actions / native (ubuntu-latest, beta)

private item shadows public glob re-export

Check warning on line 303 in src/lib.rs

View workflow job for this annotation

GitHub Actions / native (ubuntu-latest, stable)

private item shadows public glob re-export

Check warning on line 303 in src/lib.rs

View workflow job for this annotation

GitHub Actions / native (ubuntu-latest, stable)

private item shadows public glob re-export

Check warning on line 303 in src/lib.rs

View workflow job for this annotation

GitHub Actions / native (ubuntu-latest, beta)

private item shadows public glob re-export
mod graphics {}

Check warning on line 304 in src/lib.rs

View workflow job for this annotation

GitHub Actions / native (macOS-latest, stable)

private item shadows public glob re-export

Check warning on line 304 in src/lib.rs

View workflow job for this annotation

GitHub Actions / native (macOS-latest, beta)

private item shadows public glob re-export

Check warning on line 304 in src/lib.rs

View workflow job for this annotation

GitHub Actions / native (macOS-latest, stable)

private item shadows public glob re-export

Check warning on line 304 in src/lib.rs

View workflow job for this annotation

GitHub Actions / native (macOS-latest, beta)

private item shadows public glob re-export

Check warning on line 304 in src/lib.rs

View workflow job for this annotation

GitHub Actions / native (ubuntu-latest, beta)

private item shadows public glob re-export

Check warning on line 304 in src/lib.rs

View workflow job for this annotation

GitHub Actions / native (ubuntu-latest, stable)

private item shadows public glob re-export

Check warning on line 304 in src/lib.rs

View workflow job for this annotation

GitHub Actions / native (ubuntu-latest, stable)

private item shadows public glob re-export

Check warning on line 304 in src/lib.rs

View workflow job for this annotation

GitHub Actions / native (ubuntu-latest, beta)

private item shadows public glob re-export
mod native {}
mod renderer {}

Check warning on line 306 in src/lib.rs

View workflow job for this annotation

GitHub Actions / native (macOS-latest, stable)

private item shadows public glob re-export

Check warning on line 306 in src/lib.rs

View workflow job for this annotation

GitHub Actions / native (macOS-latest, beta)

private item shadows public glob re-export

Check warning on line 306 in src/lib.rs

View workflow job for this annotation

GitHub Actions / native (macOS-latest, stable)

private item shadows public glob re-export

Check warning on line 306 in src/lib.rs

View workflow job for this annotation

GitHub Actions / native (macOS-latest, beta)

private item shadows public glob re-export

Check warning on line 306 in src/lib.rs

View workflow job for this annotation

GitHub Actions / native (ubuntu-latest, beta)

private item shadows public glob re-export

Check warning on line 306 in src/lib.rs

View workflow job for this annotation

GitHub Actions / native (ubuntu-latest, stable)

private item shadows public glob re-export

Check warning on line 306 in src/lib.rs

View workflow job for this annotation

GitHub Actions / native (ubuntu-latest, stable)

private item shadows public glob re-export

Check warning on line 306 in src/lib.rs

View workflow job for this annotation

GitHub Actions / native (ubuntu-latest, beta)

private item shadows public glob re-export
mod style {}
mod runtime {}
}
Expand Down
Loading