mirror of
https://github.com/tauri-apps/tauri.git
synced 2026-04-03 10:11:15 +02:00
* 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
20 lines
543 B
TOML
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]
|