From 460dd4b708b2cbeb936513ff994ca70fec319a49 Mon Sep 17 00:00:00 2001 From: Garrit Franke Date: Wed, 10 Feb 2021 15:41:03 +0100 Subject: [PATCH] chore: use node target as default --- Cargo.toml | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/Cargo.toml b/Cargo.toml index f559cde..abf3f0d 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -19,7 +19,9 @@ backend_c = [] backend_node = [] backend_llvm = ["inkwell"] -default = ["backend_llvm"] +# To change, use the --featues flag: +# cargo run --features backend_llvm +default = ["backend_node"] [dependencies] structopt = "0.3.21"