Skip to content

Commit

Permalink
Bring back wayland support (rerun-io#3111)
Browse files Browse the repository at this point in the history
At some point, `eframe` made wayland support optional behind a feature
flag, which broke Rerun's wayland support since we don't specify that
feature flag.

### What

### Checklist
* [x] I have read and agree to [Contributor
Guide](https://github.com/rerun-io/rerun/blob/main/CONTRIBUTING.md) and
the [Code of
Conduct](https://github.com/rerun-io/rerun/blob/main/CODE_OF_CONDUCT.md)
* [x] I've included a screenshot or gif (if applicable)
* [x] I have tested [demo.rerun.io](https://demo.rerun.io/pr/3111) (if
applicable)

- [PR Build Summary](https://build.rerun.io/pr/3111)
- [Docs
preview](https://rerun.io/preview/b375dca229bcbe77388811bcdcedaaae9a06e462/docs)
<!--DOCS-PREVIEW-->
- [Examples
preview](https://rerun.io/preview/b375dca229bcbe77388811bcdcedaaae9a06e462/examples)
<!--EXAMPLES-PREVIEW--><!--EXAMPLES-PREVIEW--><!--EXAMPLES-PREVIEW-->
- [Recent benchmark results](https://ref.rerun.io/dev/bench/)
- [Wasm size tracking](https://ref.rerun.io/dev/sizes/)
  • Loading branch information
teh-cmc authored Aug 25, 2023
1 parent effb72b commit 8e3870f
Showing 1 changed file with 5 additions and 1 deletion.
6 changes: 5 additions & 1 deletion Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -80,7 +80,11 @@ comfy-table = { version = "6.1", default-features = false }
const_panic = { version = "0.2.8", features = ["rust_1_64"] }
crossbeam = "0.8"
ecolor = "0.22.0"
eframe = { version = "0.22.0", default-features = false, features = ["x11"] }
eframe = { version = "0.22.0", default-features = false, features = [
"default_fonts",
"wayland",
"x11",
] }
egui = { version = "0.22.0", features = ["extra_debug_asserts", "log"] }
egui_extras = { version = "0.22.0", features = ["log"] }
egui_tiles = { version = "0.2" }
Expand Down

0 comments on commit 8e3870f

Please sign in to comment.