-
Notifications
You must be signed in to change notification settings - Fork 22
/
Cargo.toml
39 lines (33 loc) · 1.05 KB
/
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
37
38
39
[package]
name = "pretty"
version = "0.12.4-alpha.0"
authors = [ "Jonathan Sterling <[email protected]>", "Darin Morrison <[email protected]>", "Markus Westerlind <[email protected]>"]
description = "Wadler-style pretty-printing combinators in Rust"
documentation = "https://docs.rs/pretty/"
keywords = ["console", "functional", "pretty-printing"]
license = "MIT"
readme = "README.md"
repository = "https://github.com/Marwes/pretty.rs"
edition = "2018"
[package.metadata.docs.rs]
features = ["termcolor"]
[dependencies]
# The newer versions of arrayvec are larger due to forced u32 lengths, would need to drop down Smalltext to 16 bytes
# to not see any size increase so I'd rather stick with the older version for now
arrayvec = "0.5"
typed-arena = "2.0.0"
termcolor = { version = "1.1.0", optional = true }
unicode-width = "0.1"
[dev-dependencies]
criterion = "0.4"
difference = "2"
expect-test = "1"
tempfile = "3.1.0"
[[example]]
name = "trees"
[[example]]
name = "colored"
required-features = ["termcolor"]
[[bench]]
name = "trees"
harness = false