Skip to main content

HOST_CARGO_TEMPLATE

Constant HOST_CARGO_TEMPLATE 

Source
const HOST_CARGO_TEMPLATE: &str = "[package]\nname = \"{{ project_name }}-host\"\nversion = \"0.1.0\"\nedition = \"2021\"\n\n[dependencies]\nairbender-host = { {{ host_dep }}{{ host_dep_features }} }\n\n# This is required to avoid having to specify `RUST_MIN_STACK` for compilation.\n# The reason why this is needed is because these packages are highly optimized, but the optimizations\n# make debug information generation more heavy and cause the default stack size to overflow.\n# This issue is expected to be resolved later.\n[profile.dev.package.keccak_special5]\ndebug = 0\n[profile.dev.package.setups]\ndebug = 0\n[profile.release.package.keccak_special5]\ndebug = 0\n[profile.release.package.setups]\ndebug = 0\n";