forked from dtolnay/trybuild
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Cargo.toml
37 lines (32 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
[package]
name = "trybuild-internals-api"
version = "1.0.99"
authors = ["Shadaj Laddad <[email protected]>"]
description = "A fork of trybuild with the internals exposed as a public API"
documentation = "https://docs.rs/trybuild-internals-api"
edition = "2021"
exclude = ["screenshots/*"]
keywords = ["macros", "testing", "dev-dependencies"]
license = "MIT OR Apache-2.0"
repository = "https://github.com/hydro-project/trybuild"
rust-version = "1.70"
[features]
# Experimental: highlight the diff between the expected and actual compiler
# output. Currently unix-only. If you test this out, please provide any feedback
# in https://github.com/dtolnay/trybuild/issues/41.
diff = ["dissimilar"]
[dependencies]
dissimilar = { version = "1.0", optional = true }
glob = "0.3"
serde = "1.0.194"
serde_derive = "1.0.194"
serde_json = "1.0.110"
termcolor = "1.0.4"
toml = "0.8"
[dev-dependencies]
automod = "1.0.10"
[lib]
doc-scrape-examples = false
[package.metadata.docs.rs]
targets = ["x86_64-unknown-linux-gnu"]
rustdoc-args = ["--generate-link-to-definition"]