-
Notifications
You must be signed in to change notification settings - Fork 14
/
Copy pathCargo.toml
46 lines (44 loc) · 1.1 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
[package]
name = "determinator"
version = "0.12.0"
description = "Figure out which packages changed between two commits to a workspace."
documentation = "https://docs.rs/determinator"
authors = ["Rain <rain1@fb.com>"]
edition = "2021"
repository = "https://github.com/guppy-rs/guppy"
license = "MIT OR Apache-2.0"
readme = "README.md"
keywords = [
"cargo",
"guppy",
"determinator",
"package-changes",
"build-caching",
]
categories = ["config", "development-tools"]
include = [
"README.md",
"**/*.rs",
# Include default rules with the package.
"default-rules.toml",
]
rust-version.workspace = true
[dependencies]
ahash.workspace = true
camino = "1.1.9"
globset = "0.4.15"
guppy = { version = "0.17.14", path = "../../guppy", features = [
"rayon1",
"summaries",
] }
once_cell = "1.20.3"
petgraph = { version = "0.7.1", default-features = false, features = [
"graphmap",
] }
rayon = "1.10.0"
serde = { version = "1.0.217", features = ["derive"] }
toml = "0.5.11"
guppy-workspace-hack.workspace = true
[dev-dependencies]
fixtures = { path = "../../fixtures" }
cfg-if = "1.0.0"