Enable all features for egui_kittest docs (#5711)

- Enable all-features when generating docs
- Add x11 feature so it builds on Linux
- Add double hashes to the feature comments so document-features
includes them in the docs

* Closes <https://github.com/emilk/egui/issues/5709>
* [x] I have followed the instructions in the PR template
This commit is contained in:
YgorSouza 2025-02-12 14:20:15 +01:00 committed by GitHub
parent 510b3cdf48
commit 982b2580f4
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194
1 changed files with 11 additions and 4 deletions

View File

@ -18,8 +18,12 @@ include = ["../LICENSE-APACHE", "../LICENSE-MIT", "**/*.rs", "Cargo.toml"]
# See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html
[package.metadata.docs.rs]
all-features = true
rustdoc-args = ["--generate-link-to-definition"]
[features]
# Adds a wgpu-based test renderer.
## Adds a wgpu-based test renderer.
wgpu = [
"dep:egui-wgpu",
"dep:pollster",
@ -28,12 +32,15 @@ wgpu = [
"eframe?/wgpu",
]
# Adds a dify-based image snapshot utility.
## Adds a dify-based image snapshot utility.
snapshot = ["dep:dify", "dep:image", "image/png"]
# Allows testing eframe::App
## Allows testing eframe::App
eframe = ["dep:eframe", "eframe/accesskit"]
# This is just so it compiles with `--all-features` on Linux
x11 = ["eframe?/x11"]
[dependencies]
kittest.workspace = true
@ -50,7 +57,7 @@ wgpu = { workspace = true, features = ["metal", "dx12"], optional = true }
# snapshot dependencies
dify = { workspace = true, optional = true }
## Enable this when generating docs.
# Enable this when generating docs.
document-features = { workspace = true, optional = true }
[dev-dependencies]