Files
tauri/cef-helper/Cargo.toml
Lucas Fernandes Nogueira 8f71640250 fix: CEF CI (#14953)
* fix: CEF CI

* fmt

* update to rust 1.88, edition 2024

* install x86_64-apple-darwin

* linux clippy

* fix --all-features

* more all-features fixes

* install x86 apple

* fix windows

* fix doc tests

* skip --all-featuress test for android and ios

* more clippy fixes

* install target

* fix build, clippy

* export cef for tests

* pin version

* fix arg
2026-02-18 11:24:11 -03:00

20 lines
543 B
TOML

[package]
name = "tauri-cef-helper"
version = "0.1.0"
edition = "2024"
license = "Apache-2.0 OR MIT"
publish = false
[dependencies]
cef = { version = "=144.1.0+144.0.7", default-features = false }
# Not actually used directly, just locking it.
cef-dll-sys = { version = "=144.1.0+144.0.7", default-features = false }
[features]
default = ["sandbox"]
# Mirrors `tauri-runtime-cef` default feature to enable CEF sandbox support on macOS.
sandbox = ["cef/sandbox"]
# Ensure this crate is NOT treated as part of the repo workspace.
[workspace]