Cargo Features
[dependencies]
solana_rbpf = { version = "0.8.5", default-features = false, features = ["jit", "fuzzer-not-safe-for-production", "debugger", "shuttle-test"] }
- default = jit
-
The
jit
feature is set by default wheneversolana_rbpf
is added without
somewhere in the dependency tree.default-features = false - jit default = libc, winapi
- fuzzer-not-safe-for-production = arbitrary
- debugger = gdbstub
-
Affects
interpreter::DebugState
,solana_rbpf::debugger
,vm::EbpfVm.debug_port
… - shuttle-test
-
Enables shuttle ^0.7.1
Features from optional dependencies
In crates that don't use the dep:
syntax, optional dependencies automatically become Cargo features. These features may have been created by mistake, and this functionality may be removed in the future.
- gdbstub debugger?
-
Enables gdbstub ^0.6.2
- libc not win jit
- winapi win jit
- arbitrary fuzzer-not-safe-for-production?