Crates.io | export-cef-dir |
lib.rs | export-cef-dir |
version | 139.6.0+139.0.37 |
created_at | 2025-02-02 02:50:21.718185+00 |
updated_at | 2025-08-29 02:03:10.386884+00 |
description | Export pre-built CEF (Chromium Embedded Framework) archives. |
homepage | |
repository | https://github.com/tauri-apps/cef-rs |
max_upload_size | |
id | 1539219 |
size | 47,160 |
Export files from the prebuilt Chromium Embedded Framework
archive on any supported platform. The structure of the exported directory matches the way that
the cef-dll-sys
crate expects to see them.
To use the target directory when building, set the CEF_PATH
environment variable to the path of the
exported directory, e.g., ~/.local/share/cef
.
To use the DLLs in this directory at runtime, the library loader path varies by platform:
export LD_LIBRARY_PATH="$LD_LIBRARY_PATH:$CEF_PATH"
export DYLD_FALLBACK_LIBRARY_PATH="$DYLD_FALLBACK_LIBRARY_PATH:$CEF_PATH"
$env:PATH = "$env:PATH;$env:CEF_PATH"