A dynamic binding to the Chromium Embedded Framework for the D Programming Language.
Please see the pages Building and Linking Derelict and Using Derelict, in the Derelict documentation, for information on how to build DerelictCEF and load libcef at run time. In the meantime, here's some sample code.
import derelict.cef.cef;
void main() {
// Load the CEF library.
DerelictCEF.load();
// Now libcef functions can be called.
...
}