-
Notifications
You must be signed in to change notification settings - Fork 18
Expand file tree
/
Copy pathCargo.toml
More file actions
48 lines (44 loc) · 1.57 KB
/
Copy pathCargo.toml
File metadata and controls
48 lines (44 loc) · 1.57 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
[package]
name = "guppy-summaries"
version = "0.7.1"
description = "Build summaries for Cargo, created by guppy."
documentation = "https://docs.rs/guppy-summaries"
repository = "https://github.com/guppy-rs/guppy"
authors = ["Rain <rain1@fb.com>"]
license = "MIT OR Apache-2.0"
readme = "README.md"
keywords = ["cargo", "dependencies", "guppy", "summaries"]
categories = [
"config",
"data-structures",
"development-tools",
"parser-implementations",
]
edition = "2024"
exclude = [
# Readme template that doesn't need to be included.
"README.tpl",
]
rust-version.workspace = true
[package.metadata.docs.rs]
all-features = 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 = "0.8.12"
camino = { version = "1.2.1", features = ["serde1"] }
cfg-if = "1.0.3"
diffus = "0.10.0"
toml = { version = "0.5.11", features = ["preserve_order"] }
semver = { version = "1.0.27", features = ["serde"] }
serde = { version = "1.0.228", features = ["derive"] }
guppy-workspace-hack.workspace = true
[dev-dependencies]
indoc = "2.0.7"
pretty_assertions = "1.4.1"
serde_json = "1.0.145"