Skip to content

Commit 06641ef

Browse files
committed
Fixes.
1 parent 6ad893c commit 06641ef

File tree

3 files changed

+5
-2
lines changed

3 files changed

+5
-2
lines changed

crates/processing_glfw/Cargo.toml

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -8,6 +8,8 @@ workspace = true
88

99
[features]
1010
wayland = ["glfw/wayland"]
11+
x11 = []
12+
static-link = ["glfw/static-link"]
1113

1214
[dependencies]
1315
bevy = { workspace = true }

crates/processing_pyo3/Cargo.toml

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

1313
[features]
14-
default = ["wayland"]
14+
default = ["wayland", "static-link"]
1515
wayland = ["processing/wayland", "processing_glfw/wayland"]
16+
static-link = ["processing_glfw/static-link"]
1617
x11 = ["processing/x11"]
1718
webcam = ["processing/webcam", "dep:processing_webcam"]
1819

crates/processing_pyo3/src/input.rs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
use Entity;
1+
use bevy::prelude::Entity;
22
use processing::prelude::*;
33
use pyo3::{
44
exceptions::{PyRuntimeError, PyValueError},

0 commit comments

Comments
 (0)