update: version to 0.2.0-dev

This commit is contained in:
not-elm
2025-08-19 13:12:42 +09:00
parent 291f06e74b
commit 1d3512c6b8
2 changed files with 9 additions and 7 deletions

9
Cargo.lock generated
View File

@@ -548,10 +548,11 @@ dependencies = [
[[package]]
name = "bevy_cef"
version = "0.1.0"
version = "0.2.0-dev"
dependencies = [
"async-channel",
"bevy",
"bevy_cef",
"bevy_cef_core",
"bevy_remote",
"cef",
@@ -563,7 +564,7 @@ dependencies = [
[[package]]
name = "bevy_cef_core"
version = "0.1.0"
version = "0.2.0-dev"
dependencies = [
"async-channel",
"bevy",
@@ -578,7 +579,7 @@ dependencies = [
[[package]]
name = "bevy_cef_debug_render_process"
version = "0.1.0"
version = "0.2.0-dev"
dependencies = [
"bevy_cef_core",
"cef",
@@ -2088,7 +2089,7 @@ checksum = "2a2330da5de22e8a3cb63252ce2abb30116bf5265e89c0e01bc17015ce30a476"
[[package]]
name = "demo"
version = "0.1.0"
version = "0.2.0-dev"
dependencies = [
"bevy",
"bevy_cef",

View File

@@ -19,7 +19,7 @@ members = [
]
[workspace.package]
version = "0.1.0"
version = "0.2.0-dev"
edition = "2024"
license = "Apache-2.0 OR MIT"
authors = ["notelm"]
@@ -43,8 +43,8 @@ bevy = { version = "0.16", default-features = false, features = [
bevy_remote = "0.16"
cef = { version = "139" }
cef-dll-sys = { version = "139.0", features = ["sandbox"] }
bevy_cef = { path = "." , version = "0.1"}
bevy_cef_core = { path = "crates/bevy_cef_core", version = "0.1" }
bevy_cef = { path = "." , version = "0.2.0-dev" }
bevy_cef_core = { path = "crates/bevy_cef_core", version = "0.2.0-dev" }
async-channel = { version = "2.5" }
serde = { version = "1", features = ["derive"] }
serde_json = { version = "1" }
@@ -62,6 +62,7 @@ raw-window-handle = "0.6"
[dev-dependencies]
bevy = { workspace = true, default-features = true, features = ["file_watcher"]}
bevy_cef = { workspace = true, features = ["debug"] }
[target.'cfg(target_os = "macos")'.dependencies]
objc = { version = "0.2" }