forked from guppy-rs/guppy
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathCargo.toml
More file actions
45 lines (43 loc) · 1.1 KB
/
Cargo.toml
File metadata and controls
45 lines (43 loc) · 1.1 KB
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
[package]
name = "determinator"
version = "0.9.1"
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 = "1.58"
[dependencies]
camino = "1.1.1"
globset = "0.4.9"
guppy = { version = "0.14.4", path = "../../guppy", features = [
"rayon1",
"summaries",
] }
once_cell = "1.15.0"
petgraph = { version = "0.6.2", default-features = false, features = [
"graphmap",
] }
rayon = "1.5.3"
serde = { version = "1.0.147", features = ["derive"] }
toml = "0.5.9"
guppy-workspace-hack = { version = "0.1", path = "../../workspace-hack" }
[dev-dependencies]
fixtures = { path = "../../fixtures" }
cfg-if = "1.0.0"