export-cef-dir

Crates.ioexport-cef-dir
lib.rsexport-cef-dir
version139.6.0+139.0.37
created_at2025-02-02 02:50:21.718185+00
updated_at2025-08-29 02:03:10.386884+00
descriptionExport pre-built CEF (Chromium Embedded Framework) archives.
homepage
repositoryhttps://github.com/tauri-apps/cef-rs
max_upload_size
id1539219
size47,160
Bill Avery (wravery)

documentation

README

export-cef-dir

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:

  • Linux
export LD_LIBRARY_PATH="$LD_LIBRARY_PATH:$CEF_PATH"
  • macOS
export DYLD_FALLBACK_LIBRARY_PATH="$DYLD_FALLBACK_LIBRARY_PATH:$CEF_PATH"
  • Windows (using PowerShell)
$env:PATH = "$env:PATH;$env:CEF_PATH"
Commit count: 628

cargo fmt