From 0618ff11ccf50fd6e8a6e0bd7820f19b100ca44a Mon Sep 17 00:00:00 2001 From: Vincent Ambo Date: Mon, 23 Nov 2020 00:47:27 +0100 Subject: feat(tazjin/rlox): Bootstrap program 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 Tested-by: BuildkiteCI --- users/tazjin/rlox/Cargo.toml | 9 +++++++++ 1 file changed, 9 insertions(+) create mode 100644 users/tazjin/rlox/Cargo.toml (limited to 'users/tazjin/rlox/Cargo.toml') diff --git a/users/tazjin/rlox/Cargo.toml b/users/tazjin/rlox/Cargo.toml new file mode 100644 index 000000000000..1562e7ecc2a3 --- /dev/null +++ b/users/tazjin/rlox/Cargo.toml @@ -0,0 +1,9 @@ +[package] +name = "rlox" +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] -- cgit 1.4.1