Merge pull request #445 from bjh21/bjh21-bbc-basic
[jackhill/mal.git] / rust / Cargo.toml
CommitLineData
abdd56eb 1[package]
4ef4b17c
JM
2name = "rust2"
3version = "0.1.0"
4authors = ["root"]
abdd56eb 5
bbeb1b87 6[dependencies]
4ef4b17c
JM
7rustyline = "1.0.0"
8lazy_static = "1.0.1"
9
10regex = "1.0.0"
11itertools = "0.7.4"
12fnv = "1.0.3"
13
14
15[[bin]]
16name = "step0_repl"
17path = "step0_repl.rs"
18
19[[bin]]
20name = "step1_read_print"
21path = "step1_read_print.rs"
22
23[[bin]]
24name = "step2_eval"
25path = "step2_eval.rs"
26
27[[bin]]
28name = "step3_env"
29path = "step3_env.rs"
30
31[[bin]]
32name = "step4_if_fn_do"
33path = "step4_if_fn_do.rs"
34
35[[bin]]
36name = "step5_tco"
37path = "step5_tco.rs"
38
39[[bin]]
40name = "step6_file"
41path = "step6_file.rs"
42
43[[bin]]
44name = "step7_quote"
45path = "step7_quote.rs"
46
47[[bin]]
48name = "step8_macros"
49path = "step8_macros.rs"
50
51[[bin]]
52name = "step9_try"
53path = "step9_try.rs"
54
55[[bin]]
56name = "stepA_mal"
57path = "stepA_mal.rs"