about summary refs log tree commit diff
path: root/users/tazjin/rlox/Cargo.toml
diff options
context:
space:
mode:
Diffstat (limited to 'users/tazjin/rlox/Cargo.toml')
-rw-r--r--users/tazjin/rlox/Cargo.toml7
1 files changed, 4 insertions, 3 deletions
diff --git a/users/tazjin/rlox/Cargo.toml b/users/tazjin/rlox/Cargo.toml
index 1562e7ecc2..b66af6ba85 100644
--- a/users/tazjin/rlox/Cargo.toml
+++ b/users/tazjin/rlox/Cargo.toml
@@ -4,6 +4,7 @@ version = "0.1.0"
 authors = ["Vincent Ambo <mail@tazj.in>"]
 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 = []