From 89526b6a9c7a88aea5d945bb66bae23a542e95af Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Moon=20Dav=C3=A9?= Date: Fri, 20 Feb 2026 11:13:19 -0500 Subject: [PATCH] move file_watcher to pyo3 crate --- Cargo.toml | 2 +- crates/processing_pyo3/Cargo.toml | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/Cargo.toml b/Cargo.toml index 91cab9c..6ef712c 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -21,7 +21,7 @@ type_complexity = "allow" too_many_arguments = "allow" [workspace.dependencies] -bevy = { git = "https://github.com/bevyengine/bevy", branch = "main", features = ["file_watcher"] } +bevy = { git = "https://github.com/bevyengine/bevy", branch = "main" } processing = { path = "." } processing_pyo3 = { path = "crates/processing_pyo3" } processing_render = { path = "crates/processing_render" } diff --git a/crates/processing_pyo3/Cargo.toml b/crates/processing_pyo3/Cargo.toml index 4e0acb7..02b4d51 100644 --- a/crates/processing_pyo3/Cargo.toml +++ b/crates/processing_pyo3/Cargo.toml @@ -18,7 +18,7 @@ x11 = ["processing/x11"] [dependencies] pyo3 = "0.27.0" processing = { workspace = true } -bevy = { workspace = true } +bevy = { workspace = true, features = ["file_watcher"] } glfw = { version = "0.60.0"} [target.'cfg(target_os = "macos")'.dependencies]