-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathCargo.toml
More file actions
30 lines (24 loc) · 725 Bytes
/
Copy pathCargo.toml
File metadata and controls
30 lines (24 loc) · 725 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
[package]
name = "timi"
version = "0.2.1"
authors = ["bollu <siddu.druid@gmail.com>"]
description = "A visual template instantiation machine interpreter to understand how lazy functional programming languages evaluate"
homepage = "https://github.com/bollu/timi"
repository = "https://github.com/bollu/timi"
documentation = "https://github.com/bollu/timi"
readme = "README.md"
keywords = ["interpreter", "haskell", "lazy", "functional", "languages"]
categories = ["command-line-interface", "visualization", "emulators"]
license = "MIT"
[dependencies]
ansi_term = "0.9"
prettytable-rs = "^0.6"
rustyline = "1.0.0"
rand = "0.3"
[[bin]]
name = "timi"
path = "src/bin.rs"
doc = false
[lib]
name = "timi"
path = "src/lib.rs"