-
Notifications
You must be signed in to change notification settings - Fork 18
Expand file tree
/
Copy pathCargo.toml
More file actions
54 lines (51 loc) · 1.63 KB
/
Copy pathCargo.toml
File metadata and controls
54 lines (51 loc) · 1.63 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
46
47
48
49
50
51
52
53
54
[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 = "2024"
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
[package.metadata.release]
pre-release-replacements = [
{ file="CHANGELOG.md", search="Unreleased", replace="[{{version}}]", min=1 },
{ file="CHANGELOG.md", search="ReleaseDate", replace="{{date}}", min=1 },
{ file="CHANGELOG.md", search="<!-- next-header -->", replace="<!-- next-header -->\n## Unreleased - ReleaseDate\n", exactly=1 },
{ file="CHANGELOG.md", search="<!-- next-url -->", replace="<!-- next-url -->\n[{{version}}]: https://github.com/guppy-rs/guppy/releases/tag/{{crate_name}}-{{version}}", exactly=1 },
]
[dependencies]
ahash.workspace = true
camino = "1.2.1"
globset = "0.4.16"
guppy = { version = "0.17.26", path = "../../guppy", features = [
"rayon1",
"summaries",
] }
once_cell = "1.21.3"
petgraph = { version = "0.8.3", default-features = false, features = [
"graphmap", "std",
] }
rayon = "1.10.0"
serde = { version = "1.0.228", features = ["derive"] }
toml = "0.5.11"
guppy-workspace-hack.workspace = true
[dev-dependencies]
fixtures = { path = "../../fixtures" }
cfg-if = "1.0.3"