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
|
[package]
name = "trybuild"
version = "1.0.104"
authors = ["David Tolnay <dtolnay@gmail.com>"]
categories = ["development-tools::testing"]
description = "Test harness for ui tests of compiler diagnostics"
documentation = "https://docs.rs/trybuild"
edition = "2021"
exclude = ["build.rs", "screenshots/*"]
keywords = ["macros", "testing", "dev-dependencies"]
license = "MIT OR Apache-2.0"
repository = "https://github.com/dtolnay/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 = ["dep: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"
target-triple = "0.1"
termcolor = "1.0.4"
toml = "0.8"
[dev-dependencies]
automod = "1.0.10"
[package.metadata.docs.rs]
targets = ["x86_64-unknown-linux-gnu"]
rustdoc-args = [
"--generate-link-to-definition",
"--extern-html-root-url=core=https://doc.rust-lang.org",
"--extern-html-root-url=alloc=https://doc.rust-lang.org",
"--extern-html-root-url=std=https://doc.rust-lang.org",
]
|