diff --git a/Cargo.toml b/Cargo.toml index 3285c44..3d9bf7a 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "browser-window" -version = "0.9.4" +version = "0.10.0" description = "A simple, async/await aware browser window." edition = "2018" authors = ["Bamidev"] @@ -33,7 +33,7 @@ name = "authentication" path = "examples/authentication.rs" [dependencies] -browser-window-c = { path = "c", version = "0.0.12" } +browser-window-c = { path = "c", version = "0.0.13" } futures-channel = { version = "^0.3" } gtk = { version = "0.18", optional = true } javascriptcore-rs = { version = "1", optional = true } @@ -41,6 +41,7 @@ lazy_static = "1" num-bigfloat = "1" unsafe-send-sync = "^0.1" webkit2gtk = { version = "2.0", optional = true, features = ["v2_40"] } +browser-window-cef-bin = { path = "../browser-window-cef-bin" } [dev-dependencies] diff --git a/c/Cargo.toml b/c/Cargo.toml index 3d22c79..98f86db 100644 --- a/c/Cargo.toml +++ b/c/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "browser-window-c" -version = "0.0.12" +version = "0.0.13" description = "FFI bindings for the browser-window crate." edition = "2018" authors = ["Bamidev"]