Frontend.CmdOrganise commands to send to the Soteria-Rust frontend
val entry_as_flag : entry -> string listval entry_matches_fn : Charon.UllbcAst.fun_decl -> entry -> booltype t = {charon : string list;Arguments passed to Charon (only when using the Charon frontend)
obol : string list;Arguments passed to Obol (only when using the Obol frontend)
features : string list;Features to enable for compilation (as in --cfg)
*)rustc : string list;DEPRECATED?: rustc flags. For Cargo we use RUSTFLAGS, but when possible it would be nicer to use the Cargo-specific command (as with features)?
*)entry_points : entry list;Functions to mark as entry points, e.g. Attrib "soteriatool::test", when we are interested in filtering the entry-points.
expect_error : entry list;Markers to know that an entry point is expected to fail. This is used to inverse the outcomes of the execution, so that we can use the same plugin for both expected-success and expected-failure tests.
*)}val empty : t