We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 6ad893c commit 06641efCopy full SHA for 06641ef
3 files changed
crates/processing_glfw/Cargo.toml
@@ -8,6 +8,8 @@ workspace = true
8
9
[features]
10
wayland = ["glfw/wayland"]
11
+x11 = []
12
+static-link = ["glfw/static-link"]
13
14
[dependencies]
15
bevy = { workspace = true }
crates/processing_pyo3/Cargo.toml
@@ -11,8 +11,9 @@ name = "mewnala"
crate-type = ["cdylib"]
-default = ["wayland"]
+default = ["wayland", "static-link"]
wayland = ["processing/wayland", "processing_glfw/wayland"]
16
+static-link = ["processing_glfw/static-link"]
17
x11 = ["processing/x11"]
18
webcam = ["processing/webcam", "dep:processing_webcam"]
19
crates/processing_pyo3/src/input.rs
@@ -1,4 +1,4 @@
1
-use Entity;
+use bevy::prelude::Entity;
2
use processing::prelude::*;
3
use pyo3::{
4
exceptions::{PyRuntimeError, PyValueError},
0 commit comments