Skip to content

Commit da671f4

Browse files
authored
Merge pull request #325 from tauri-apps/get-latest
2 parents 37e83e8 + b51781d commit da671f4

9 files changed

+26
-26
lines changed

Cargo.toml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -12,7 +12,7 @@ members = [
1212
]
1313

1414
[workspace.package]
15-
version = "143.6.0+143.0.13"
15+
version = "143.7.0+143.0.14"
1616
edition = "2021"
1717
license = "Apache-2.0 OR MIT"
1818
authors = [
@@ -24,7 +24,7 @@ repository = "https://github.com/tauri-apps/cef-rs"
2424

2525
[workspace.dependencies]
2626
cef = { path = "cef", default-features = false }
27-
cef-dll-sys = { version = "143.6.0", path = "sys" }
27+
cef-dll-sys = { version = "143.7.0", path = "sys" }
2828
download-cef = { version = "2.3", path = "download-cef" }
2929

3030
anyhow = "1"

sys/src/bindings/aarch64_apple_darwin.rs

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -24,14 +24,14 @@ pub const CEF_API_VERSION_LAST: i32 = 14300;
2424
pub const CEF_API_VERSION_EXPERIMENTAL: i32 = 999999;
2525
pub const CEF_API_VERSION_NEXT: i32 = 999998;
2626
pub const CEF_API_VERSION: i32 = 999999;
27-
pub const CEF_VERSION: &[u8; 42] = b"143.0.13+g30cb3bd+chromium-143.0.7499.170\0";
27+
pub const CEF_VERSION: &[u8; 42] = b"143.0.14+gdd46a37+chromium-143.0.7499.193\0";
2828
pub const CEF_VERSION_MAJOR: i32 = 143;
2929
pub const CEF_VERSION_MINOR: i32 = 0;
30-
pub const CEF_VERSION_PATCH: i32 = 13;
30+
pub const CEF_VERSION_PATCH: i32 = 14;
3131
pub const CHROME_VERSION_MAJOR: i32 = 143;
3232
pub const CHROME_VERSION_MINOR: i32 = 0;
3333
pub const CHROME_VERSION_BUILD: i32 = 7499;
34-
pub const CHROME_VERSION_PATCH: i32 = 170;
34+
pub const CHROME_VERSION_PATCH: i32 = 193;
3535
unsafe extern "C" {
3636
#[doc = "\n Load the CEF library at the specified |path|. Returns true (1) on\n success and false (0) on failure.\n"]
3737
pub fn cef_load_library(path: *const ::std::os::raw::c_char) -> ::std::os::raw::c_int;

sys/src/bindings/aarch64_pc_windows_msvc.rs

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -24,14 +24,14 @@ pub const CEF_API_VERSION_LAST: i32 = 14300;
2424
pub const CEF_API_VERSION_EXPERIMENTAL: i32 = 999999;
2525
pub const CEF_API_VERSION_NEXT: i32 = 999998;
2626
pub const CEF_API_VERSION: i32 = 999999;
27-
pub const CEF_VERSION: &[u8; 42] = b"143.0.13+g30cb3bd+chromium-143.0.7499.170\0";
27+
pub const CEF_VERSION: &[u8; 42] = b"143.0.14+gdd46a37+chromium-143.0.7499.193\0";
2828
pub const CEF_VERSION_MAJOR: i32 = 143;
2929
pub const CEF_VERSION_MINOR: i32 = 0;
30-
pub const CEF_VERSION_PATCH: i32 = 13;
30+
pub const CEF_VERSION_PATCH: i32 = 14;
3131
pub const CHROME_VERSION_MAJOR: i32 = 143;
3232
pub const CHROME_VERSION_MINOR: i32 = 0;
3333
pub const CHROME_VERSION_BUILD: i32 = 7499;
34-
pub const CHROME_VERSION_PATCH: i32 = 170;
34+
pub const CHROME_VERSION_PATCH: i32 = 193;
3535
unsafe extern "C" {
3636
#[doc = "\n Configures the CEF API version and returns API hashes for the libcef\n library. The returned string is owned by the library and should not be\n freed. The |version| parameter should be CEF_API_VERSION and any changes to\n this value will be ignored after the first call to this method. The |entry|\n parameter describes which hash value will be returned:\n\n 0 - CEF_API_HASH_PLATFORM\n 1 - CEF_API_HASH_UNIVERSAL (deprecated, same as CEF_API_HASH_PLATFORM)\n 2 - CEF_COMMIT_HASH (from cef_version.h)\n"]
3737
pub fn cef_api_hash(

sys/src/bindings/aarch64_unknown_linux_gnu.rs

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -24,14 +24,14 @@ pub const CEF_API_VERSION_LAST: i32 = 14300;
2424
pub const CEF_API_VERSION_EXPERIMENTAL: i32 = 999999;
2525
pub const CEF_API_VERSION_NEXT: i32 = 999998;
2626
pub const CEF_API_VERSION: i32 = 999999;
27-
pub const CEF_VERSION: &[u8; 42] = b"143.0.13+g30cb3bd+chromium-143.0.7499.170\0";
27+
pub const CEF_VERSION: &[u8; 42] = b"143.0.14+gdd46a37+chromium-143.0.7499.193\0";
2828
pub const CEF_VERSION_MAJOR: i32 = 143;
2929
pub const CEF_VERSION_MINOR: i32 = 0;
30-
pub const CEF_VERSION_PATCH: i32 = 13;
30+
pub const CEF_VERSION_PATCH: i32 = 14;
3131
pub const CHROME_VERSION_MAJOR: i32 = 143;
3232
pub const CHROME_VERSION_MINOR: i32 = 0;
3333
pub const CHROME_VERSION_BUILD: i32 = 7499;
34-
pub const CHROME_VERSION_PATCH: i32 = 170;
34+
pub const CHROME_VERSION_PATCH: i32 = 193;
3535
pub type __uint16_t = ::std::os::raw::c_ushort;
3636
pub type __uint_least16_t = __uint16_t;
3737
pub type __pid_t = ::std::os::raw::c_int;

sys/src/bindings/arm_unknown_linux_gnueabi.rs

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -24,14 +24,14 @@ pub const CEF_API_VERSION_LAST: i32 = 14300;
2424
pub const CEF_API_VERSION_EXPERIMENTAL: i32 = 999999;
2525
pub const CEF_API_VERSION_NEXT: i32 = 999998;
2626
pub const CEF_API_VERSION: i32 = 999999;
27-
pub const CEF_VERSION: &[u8; 42] = b"143.0.13+g30cb3bd+chromium-143.0.7499.170\0";
27+
pub const CEF_VERSION: &[u8; 42] = b"143.0.14+gdd46a37+chromium-143.0.7499.193\0";
2828
pub const CEF_VERSION_MAJOR: i32 = 143;
2929
pub const CEF_VERSION_MINOR: i32 = 0;
30-
pub const CEF_VERSION_PATCH: i32 = 13;
30+
pub const CEF_VERSION_PATCH: i32 = 14;
3131
pub const CHROME_VERSION_MAJOR: i32 = 143;
3232
pub const CHROME_VERSION_MINOR: i32 = 0;
3333
pub const CHROME_VERSION_BUILD: i32 = 7499;
34-
pub const CHROME_VERSION_PATCH: i32 = 170;
34+
pub const CHROME_VERSION_PATCH: i32 = 193;
3535
pub type __uint16_t = ::std::os::raw::c_ushort;
3636
pub type __uint_least16_t = __uint16_t;
3737
pub type __pid_t = ::std::os::raw::c_int;

sys/src/bindings/i686_pc_windows_msvc.rs

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -24,14 +24,14 @@ pub const CEF_API_VERSION_LAST: i32 = 14300;
2424
pub const CEF_API_VERSION_EXPERIMENTAL: i32 = 999999;
2525
pub const CEF_API_VERSION_NEXT: i32 = 999998;
2626
pub const CEF_API_VERSION: i32 = 999999;
27-
pub const CEF_VERSION: &[u8; 42] = b"143.0.13+g30cb3bd+chromium-143.0.7499.170\0";
27+
pub const CEF_VERSION: &[u8; 42] = b"143.0.14+gdd46a37+chromium-143.0.7499.193\0";
2828
pub const CEF_VERSION_MAJOR: i32 = 143;
2929
pub const CEF_VERSION_MINOR: i32 = 0;
30-
pub const CEF_VERSION_PATCH: i32 = 13;
30+
pub const CEF_VERSION_PATCH: i32 = 14;
3131
pub const CHROME_VERSION_MAJOR: i32 = 143;
3232
pub const CHROME_VERSION_MINOR: i32 = 0;
3333
pub const CHROME_VERSION_BUILD: i32 = 7499;
34-
pub const CHROME_VERSION_PATCH: i32 = 170;
34+
pub const CHROME_VERSION_PATCH: i32 = 193;
3535
unsafe extern "C" {
3636
#[doc = "\n Configures the CEF API version and returns API hashes for the libcef\n library. The returned string is owned by the library and should not be\n freed. The |version| parameter should be CEF_API_VERSION and any changes to\n this value will be ignored after the first call to this method. The |entry|\n parameter describes which hash value will be returned:\n\n 0 - CEF_API_HASH_PLATFORM\n 1 - CEF_API_HASH_UNIVERSAL (deprecated, same as CEF_API_HASH_PLATFORM)\n 2 - CEF_COMMIT_HASH (from cef_version.h)\n"]
3737
pub fn cef_api_hash(

sys/src/bindings/x86_64_apple_darwin.rs

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -24,14 +24,14 @@ pub const CEF_API_VERSION_LAST: i32 = 14300;
2424
pub const CEF_API_VERSION_EXPERIMENTAL: i32 = 999999;
2525
pub const CEF_API_VERSION_NEXT: i32 = 999998;
2626
pub const CEF_API_VERSION: i32 = 999999;
27-
pub const CEF_VERSION: &[u8; 42] = b"143.0.13+g30cb3bd+chromium-143.0.7499.170\0";
27+
pub const CEF_VERSION: &[u8; 42] = b"143.0.14+gdd46a37+chromium-143.0.7499.193\0";
2828
pub const CEF_VERSION_MAJOR: i32 = 143;
2929
pub const CEF_VERSION_MINOR: i32 = 0;
30-
pub const CEF_VERSION_PATCH: i32 = 13;
30+
pub const CEF_VERSION_PATCH: i32 = 14;
3131
pub const CHROME_VERSION_MAJOR: i32 = 143;
3232
pub const CHROME_VERSION_MINOR: i32 = 0;
3333
pub const CHROME_VERSION_BUILD: i32 = 7499;
34-
pub const CHROME_VERSION_PATCH: i32 = 170;
34+
pub const CHROME_VERSION_PATCH: i32 = 193;
3535
unsafe extern "C" {
3636
#[doc = "\n Load the CEF library at the specified |path|. Returns true (1) on\n success and false (0) on failure.\n"]
3737
pub fn cef_load_library(path: *const ::std::os::raw::c_char) -> ::std::os::raw::c_int;

sys/src/bindings/x86_64_pc_windows_msvc.rs

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -24,14 +24,14 @@ pub const CEF_API_VERSION_LAST: i32 = 14300;
2424
pub const CEF_API_VERSION_EXPERIMENTAL: i32 = 999999;
2525
pub const CEF_API_VERSION_NEXT: i32 = 999998;
2626
pub const CEF_API_VERSION: i32 = 999999;
27-
pub const CEF_VERSION: &[u8; 42] = b"143.0.13+g30cb3bd+chromium-143.0.7499.170\0";
27+
pub const CEF_VERSION: &[u8; 42] = b"143.0.14+gdd46a37+chromium-143.0.7499.193\0";
2828
pub const CEF_VERSION_MAJOR: i32 = 143;
2929
pub const CEF_VERSION_MINOR: i32 = 0;
30-
pub const CEF_VERSION_PATCH: i32 = 13;
30+
pub const CEF_VERSION_PATCH: i32 = 14;
3131
pub const CHROME_VERSION_MAJOR: i32 = 143;
3232
pub const CHROME_VERSION_MINOR: i32 = 0;
3333
pub const CHROME_VERSION_BUILD: i32 = 7499;
34-
pub const CHROME_VERSION_PATCH: i32 = 170;
34+
pub const CHROME_VERSION_PATCH: i32 = 193;
3535
unsafe extern "C" {
3636
#[doc = "\n Configures the CEF API version and returns API hashes for the libcef\n library. The returned string is owned by the library and should not be\n freed. The |version| parameter should be CEF_API_VERSION and any changes to\n this value will be ignored after the first call to this method. The |entry|\n parameter describes which hash value will be returned:\n\n 0 - CEF_API_HASH_PLATFORM\n 1 - CEF_API_HASH_UNIVERSAL (deprecated, same as CEF_API_HASH_PLATFORM)\n 2 - CEF_COMMIT_HASH (from cef_version.h)\n"]
3737
pub fn cef_api_hash(

sys/src/bindings/x86_64_unknown_linux_gnu.rs

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -24,14 +24,14 @@ pub const CEF_API_VERSION_LAST: i32 = 14300;
2424
pub const CEF_API_VERSION_EXPERIMENTAL: i32 = 999999;
2525
pub const CEF_API_VERSION_NEXT: i32 = 999998;
2626
pub const CEF_API_VERSION: i32 = 999999;
27-
pub const CEF_VERSION: &[u8; 42] = b"143.0.13+g30cb3bd+chromium-143.0.7499.170\0";
27+
pub const CEF_VERSION: &[u8; 42] = b"143.0.14+gdd46a37+chromium-143.0.7499.193\0";
2828
pub const CEF_VERSION_MAJOR: i32 = 143;
2929
pub const CEF_VERSION_MINOR: i32 = 0;
30-
pub const CEF_VERSION_PATCH: i32 = 13;
30+
pub const CEF_VERSION_PATCH: i32 = 14;
3131
pub const CHROME_VERSION_MAJOR: i32 = 143;
3232
pub const CHROME_VERSION_MINOR: i32 = 0;
3333
pub const CHROME_VERSION_BUILD: i32 = 7499;
34-
pub const CHROME_VERSION_PATCH: i32 = 170;
34+
pub const CHROME_VERSION_PATCH: i32 = 193;
3535
pub type __uint16_t = ::std::os::raw::c_ushort;
3636
pub type __uint_least16_t = __uint16_t;
3737
pub type __pid_t = ::std::os::raw::c_int;

0 commit comments

Comments
 (0)