-
Notifications
You must be signed in to change notification settings - Fork 14
/
Copy pathCargo.toml
41 lines (35 loc) · 1.04 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
[package]
name = "target-spec-miette"
version = "0.4.4"
description = "Integrate target-spec errors with the miette library"
documentation = "https://docs.rs/target-spec-miette"
repository = "https://github.com/guppy-rs/guppy"
license = "MIT OR Apache-2.0"
readme = "README.md"
keywords = ["cargo", "targets", "platforms", "miette"]
categories = ["development-tools"]
edition = "2021"
rust-version.workspace = true
[package.metadata.docs.rs]
all-features = true
rustdoc-args = ["--cfg=doc_cfg"]
[dependencies]
guppy-workspace-hack.workspace = true
include_dir = { workspace = true, optional = true }
miette.workspace = true
target-spec = { version = "3.4.0", path = "../target-spec" }
[dev-dependencies]
datatest-stable.workspace = true
miette = { workspace = true, features = ["fancy"] }
snapbox.workspace = true
target-spec = { version = "3.4.0", path = "../target-spec", features = [
"custom",
] }
[lints]
workspace = true
[[test]]
name = "datatest-snapshot"
harness = false
required-features = ["fixtures"]
[features]
fixtures = ["dep:include_dir"]