From 7fb93fb49008491184a7d55ccd43db846452dce0 Mon Sep 17 00:00:00 2001 From: Vincent Ambo Date: Sun, 17 Jan 2021 23:03:41 +0300 Subject: feat(tazjin/rlox): Bootstrap VM for Lox bytecode Change-Id: I479e20bf2087e5c4aa20e31b364c57ed0d961bcf Reviewed-on: https://cl.tvl.fyi/c/depot/+/2416 Tested-by: BuildkiteCI Reviewed-by: tazjin --- users/tazjin/rlox/Cargo.toml | 7 ++++--- 1 file changed, 4 insertions(+), 3 deletions(-) (limited to 'users/tazjin/rlox/Cargo.toml') diff --git a/users/tazjin/rlox/Cargo.toml b/users/tazjin/rlox/Cargo.toml index 1562e7ecc2a3..b66af6ba85d3 100644 --- a/users/tazjin/rlox/Cargo.toml +++ b/users/tazjin/rlox/Cargo.toml @@ -4,6 +4,7 @@ version = "0.1.0" authors = ["Vincent Ambo "] edition = "2018" -# See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html - -[dependencies] +[features] +# Enables debugging/disassembling in the bytecode interpreter. Off by +# default as it is quite spammy. +disassemble = [] -- cgit 1.4.1