Files
AkshayaFoiger 06440eb640 feat(router): add local bank transfer payment method (#4294)
Co-authored-by: hyperswitch-bot[bot] <148525504+hyperswitch-bot[bot]@users.noreply.github.com>
2024-04-08 13:29:52 +00:00

10 lines
336 B
Rust

fn main() {
// Set thread stack size to 8 MiB for debug builds
// Reference: https://doc.rust-lang.org/std/thread/#stack-size
#[cfg(debug_assertions)]
println!("cargo:rustc-env=RUST_MIN_STACK=18388608"); // 8 * 1024 * 1024 = 8 MiB
#[cfg(feature = "vergen")]
router_env::vergen::generate_cargo_instructions();
}