forked from zkat/miette
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathCargo.toml
62 lines (55 loc) · 1.63 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
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
[package]
name = "miette"
version = "5.5.1-alpha.0"
authors = ["Kat Marchán <[email protected]>"]
description = "Fancy diagnostic reporting library and protocol for us mere mortals who aren't compiler hackers."
categories = ["rust-patterns"]
repository = "https://github.com/zkat/miette"
documentation = "https://docs.rs/miette"
license = "Apache-2.0"
readme = "README.md"
edition = "2018"
rust-version = "1.56.0"
exclude = ["images/", "tests/", "miette-derive/"]
[dependencies]
thiserror = "1.0.26"
miette-derive = { path = "miette-derive", version = "=5.5.1-alpha.0"}
once_cell = "1.8.0"
unicode-width = "0.1.9"
owo-colors = { version = "3.0.0", optional = true }
atty = { version = "0.2.14", optional = true }
textwrap = { version = "0.15.0", optional = true }
supports-hyperlinks = { version = "1.1.0", optional = true }
supports-color = { version = "1.1.1", optional = true }
supports-unicode = { version = "1.0.0", optional = true }
backtrace = { version = "0.3.61", optional = true }
terminal_size = { version = "0.1.17", optional = true }
[dev-dependencies]
semver = "1.0.4"
# Eyre devdeps
futures = { version = "0.3", default-features = false }
indenter = "0.3.0"
rustversion = "1.0"
trybuild = { version = "1.0.19", features = ["diff"] }
syn = { version = "1.0", features = ["full"] }
regex = "1.5"
lazy_static = "1.4"
[features]
default = []
fancy-no-backtrace = [
"owo-colors",
"atty",
"textwrap",
"terminal_size",
"supports-hyperlinks",
"supports-color",
"supports-unicode",
]
fancy = [
"fancy-no-backtrace",
"backtrace",
]
[workspace]
members = ["miette-derive"]
[package.metadata.docs.rs]
all-features = true