-
Notifications
You must be signed in to change notification settings - Fork 12
/
Copy pathCargo.toml
64 lines (59 loc) · 1.73 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
63
64
[package]
name = "hakari"
version = "0.17.7"
description = "Manage workspace-hack packages that do feature unification inside workspaces."
documentation = "https://docs.rs/hakari"
edition = "2021"
repository = "https://github.com/guppy-rs/guppy"
license = "MIT OR Apache-2.0"
readme = "README.md"
keywords = [
"cargo",
"dependencies",
"workspace-hack",
"feature-unification",
"guppy",
]
categories = ["development-tools"]
rust-version.workspace = true
[package.metadata.docs.rs]
all-features = true
rustdoc-args = ["--cfg=doc_cfg"]
[lints]
workspace = true
[dependencies]
ahash = "0.8.11"
atomicwrites = "0.4.4"
bimap = "0.6.3"
camino = "1.1.9"
cfg-if = "1.0.0"
debug-ignore = "1.0.5"
diffy = "0.4.0"
guppy = { version = "0.17.12", path = "../../guppy", features = ["rayon1"] }
include_dir = { version = "0.7.4", features = ["glob"], optional = true }
indenter = "0.3.3"
itertools = "0.13.0"
owo-colors = { version = "3.5.0", optional = true }
pathdiff = { version = "0.2.3", features = ["camino"] }
proptest = { version = "1.5.0", optional = true }
proptest-derive = { version = "0.5.1", optional = true }
rayon = "1.10.0"
serde = { version = "1.0.216", features = ["derive"], optional = true }
tabular = { version = "0.2.0", features = ["ansi-cell"], optional = true }
target-spec = { version = "3.3.1", path = "../../target-spec" }
toml = { version = "0.5.11", optional = true }
toml_edit = "0.17.1"
twox-hash = { version = "1.6.3", default-features = false }
guppy-workspace-hack.workspace = true
[dev-dependencies]
fixtures = { path = "../../fixtures" }
[features]
proptest1 = ["proptest", "proptest-derive", "guppy/proptest1"]
cli-support = [
"guppy/summaries",
"include_dir",
"owo-colors",
"serde",
"tabular",
"toml",
]