-
Notifications
You must be signed in to change notification settings - Fork 3
/
Cargo.toml
36 lines (30 loc) · 916 Bytes
/
Cargo.toml
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
31
32
33
34
35
36
[package]
name = "mon-artist"
version = "0.1.4"
authors = ["pnkfelix"]
build = "tango-build.rs"
description = "Render ASCII art to SVG, with user-customizable rendering rules."
license = "MIT/Apache-2.0"
repository = "https://github.com/pnkfelix/mon-artist"
# .gitignore will ignore the tango-generated files, but we actually
# treat them as inputs. (See related discussion on cargo/#4135.)
include = ["src/**/*.rs", "src/**/*.lalrpop", "Cargo.toml", "tango-build.rs"]
[build-dependencies]
tango = "0.8"
lalrpop = "0.13"
# Since the lib starts as a tango file stored in `src/lib.md`,
# explicitly specify that this is a library project with a
# `[lib]` section (which then requires an explicit name).
[lib]
name = "mon_artist"
path = "src/lib.rs"
[[bin]]
name = "mona"
path = "src/mona.rs"
[dependencies]
treexml = "0.3.0"
regex = "0.2"
lazy_static = "0.2"
log = "0.3"
env_logger = "0.4"
lalrpop-util = "0.13"