| Crates.io | export-cef-dir |
| lib.rs | export-cef-dir |
| version | 140.3.0+140.1.14 |
| created_at | 2025-02-02 02:50:21.718185+00 |
| updated_at | 2025-09-23 03:39:32.428937+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 | 50,997 |
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"