about summary refs log tree commit diff
path: root/users/tazjin/rlox/Cargo.toml
diff options
context:
space:
mode:
authorVincent Ambo <mail@tazj.in>2020-11-22T23·47+0100
committertazjin <mail@tazj.in>2020-11-23T01·15+0000
commit0618ff11ccf50fd6e8a6e0bd7820f19b100ca44a (patch)
treea0dea473f205242b043962bf7b3481439aff59f2 /users/tazjin/rlox/Cargo.toml
parent312d76acba238d448112e3223fda1e9c5560be6c (diff)
feat(tazjin/rlox): Bootstrap program r/1912
This is going to be the first of two interpreters from "Crafting
Interpreters".

Change-Id: I354ddd2357444648d0245f35d92176dd176525d8
Reviewed-on: https://cl.tvl.fyi/c/depot/+/2142
Reviewed-by: tazjin <mail@tazj.in>
Tested-by: BuildkiteCI
Diffstat (limited to 'users/tazjin/rlox/Cargo.toml')
-rw-r--r--users/tazjin/rlox/Cargo.toml9
1 files changed, 9 insertions, 0 deletions
diff --git a/users/tazjin/rlox/Cargo.toml b/users/tazjin/rlox/Cargo.toml
new file mode 100644
index 0000000000..1562e7ecc2
--- /dev/null
+++ b/users/tazjin/rlox/Cargo.toml
@@ -0,0 +1,9 @@
+[package]
+name = "rlox"
+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]