Cargo Features

[dependencies]
sciter-rs = { version = "0.5.58", default-features = false, features = ["nightly", "extension", "dynamic", "windowless"] }
default = dynamic

The dynamic feature is set by default whenever sciter-rs is added without default-features = false somewhere in the dependency tree.

nightly

Enable nightly compiler features (currently doesn't use any).

extension

Build as a Sciter extension library.
see "examples/extension"
note: this feature can't be tested.

dynamic default

Load Sciter DLL dynamically from the path specified by sciter::set_library. Otherwise, links statically to libsciter-gtk.so or libsciter.dylib.

windowless

Build this crate specifically for Sciter.Lite versions which are incompatible with the regular ones.