Refactor (#1)
This commit is contained in:
26
Cargo.toml
26
Cargo.toml
@@ -1,10 +1,14 @@
|
||||
[package]
|
||||
name = "bevy_cef"
|
||||
description = "Bevy CEF integration for web rendering"
|
||||
version.workspace = true
|
||||
edition.workspace = true
|
||||
license.workspace = true
|
||||
authors.workspace = true
|
||||
repository.workspace = true
|
||||
readme.workspace = true
|
||||
keywords.workspace = true
|
||||
categories.workspace = true
|
||||
|
||||
[workspace]
|
||||
resolver = "2"
|
||||
@@ -19,13 +23,25 @@ edition = "2024"
|
||||
license = "Apache-2.0 OR MIT"
|
||||
authors = ["notelm"]
|
||||
repository = "https://github.com/not-elm/bevy_cef"
|
||||
readme = "README.md"
|
||||
keywords = ["bevy", "cef", "web", "rendering"]
|
||||
categories = ["game-development", "web-programming", "graphics"]
|
||||
|
||||
[workspace.dependencies]
|
||||
bevy = { version = "0.16" }
|
||||
bevy = { version = "0.16", default-features = false, features = [
|
||||
"bevy_log",
|
||||
"bevy_window",
|
||||
"bevy_asset",
|
||||
"bevy_sprite",
|
||||
"bevy_pbr",
|
||||
"bevy_winit",
|
||||
"bevy_picking",
|
||||
"bevy_mesh_picking_backend",
|
||||
"bevy_sprite_picking_backend",
|
||||
] }
|
||||
bevy_remote = "0.16"
|
||||
cef = { version = "138" }
|
||||
cef-dll-sys = { version = "138", features = ["sandbox"] }
|
||||
download-cef = { version = "2" }
|
||||
cef = { version = "139" }
|
||||
cef-dll-sys = { version = "139.0", features = ["sandbox"] }
|
||||
bevy_cef = { path = "." }
|
||||
bevy_cef_core = { path = "crates/bevy_cef_core" }
|
||||
async-channel = { version = "2.5" }
|
||||
@@ -44,7 +60,7 @@ serde_json = { workspace = true }
|
||||
raw-window-handle = "0.6"
|
||||
|
||||
[dev-dependencies]
|
||||
bevy = { workspace = true, features = ["file_watcher"]}
|
||||
bevy = { workspace = true, features = ["tonemapping_luts", "multi_threaded", "file_watcher"]}
|
||||
bevy_cef = { workspace = true, features = ["debug"] }
|
||||
|
||||
[target.'cfg(target_os = "macos")'.dependencies]
|
||||
|
||||
Reference in New Issue
Block a user