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 wheneversciter-rs
is added without
somewhere in the dependency tree.default-features = false - 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 tolibsciter-gtk.so
orlibsciter.dylib
. - windowless
-
Build this crate specifically for Sciter.Lite versions which are incompatible with the regular ones.