-
Notifications
You must be signed in to change notification settings - Fork 3
/
Cargo.toml
32 lines (29 loc) · 935 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
[package]
name = "language-reporting"
version = "0.4.0"
readme = "README.md"
license = "Apache-2.0"
authors = ["Yehuda Katz <wycats@gmail.com>", "Brendan Zabarauskas <bjzaba@yahoo.com.au>"]
description = "Diagnostic reporting for programming languages"
homepage = "https://github.com/wycats/language-reporting"
repository = "https://github.com/wycats/language-reporting"
documentation = "https://docs.rs/language-reporting"
exclude = ["assets/**"]
edition = "2018"
[workspace]
members = [".", "crates/render-tree"]
[dependencies]
render-tree = { path = "./crates/render-tree", version = "0.1.0" }
termcolor = "1.0.4"
log = "0.4.6"
itertools = "0.7.8"
derive-new = "0.5.6"
serde = "1.0.94"
serde_derive = "1.0.94"
[dev-dependencies]
structopt = "0.2.13"
unindent = "0.1.3"
term = "0.5.1"
# pretty_assertions = { git = "https://github.com/Nemo157/rust-pretty-assertions", rev = "9332632" }
regex = "1.0.5"
pretty_env_logger = "0.2.5"