pub fn build_executable_with_rust_project<'a>(
env: &Environment,
project_path: &Path,
bin_name: &str,
exe: &'a (dyn PythonBinaryBuilder + 'a),
build_path: &Path,
artifacts_path: &Path,
target_triple: &str,
opt_level: &str,
release: bool,
locked: bool,
include_self_license: bool,
) -> Result<BuiltExecutable<'a>>
Expand description
Build an executable embedding Python using an existing Rust project.
The path to the produced executable is returned.