Skip to content

Commit 099fc3d

Browse files
author
pepc84
committed
Enable x11 feature by default in processing_pyo3
The workspace Cargo.toml already enables x11 by default, but processing_pyo3 has its own default features that didn't include x11. This meant building with maturin from the sub-crate would produce a Wayland-only wheel even on X11 systems. Add x11 to processing_pyo3's default features to match the workspace.
1 parent 6f20708 commit 099fc3d

1 file changed

Lines changed: 1 addition & 1 deletion

File tree

crates/processing_pyo3/Cargo.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -11,7 +11,7 @@ name = "mewnala"
1111
crate-type = ["cdylib"]
1212

1313
[features]
14-
default = ["wayland", "static-link"]
14+
default = ["wayland", "x11", "static-link"]
1515
wayland = ["processing/wayland", "processing_glfw/wayland"]
1616
static-link = ["processing_glfw/static-link"]
1717
x11 = ["processing/x11", "processing_glfw/x11"]

0 commit comments

Comments
 (0)