-
-
Notifications
You must be signed in to change notification settings - Fork 1
/
Cargo.toml
39 lines (34 loc) · 1.33 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
[workspace]
members = ["crates/lib", "crates/api", "crates/cli", "crates/xtask"]
resolver = "2"
[workspace.package]
authors = ["Adam Hellberg <[email protected]>"]
edition = "2021"
homepage = "https://facti.rs"
repository = "https://github.com/Sharparam/facti"
license = "MPL-2.0"
keywords = ["factorio"]
[workspace.metadata.release]
consolidate-commits = false
pre-release-commit-message = "Release {{crate_name}} v{{version}}"
publish = false
push = false
sign-commit = true
sign-tag = true
tag-message = "Release {{crate_name}} v{{version}}"
tag-prefix = "{{crate_name}}/"
pre-release-replacements = [
{ file = "CHANGELOG.md", search = "[Uu]nreleased", replace = "{{version}}", min = 1 },
{ file = "CHANGELOG.md", search = "\\.\\.\\.HEAD", replace = "...{{tag_name}}", exactly = 1 },
{ file = "CHANGELOG.md", search = "<!-- next-date -->", replace = "{{date}}", min = 1 },
{ file = "CHANGELOG.md", search = "(<!-- next-heading -->)", replace = "$1\n## [Unreleased] <!-- next-date -->\n", exactly = 1 },
{ file = "CHANGELOG.md", search = "(<!-- next-url -->)", replace = "$1\n[unreleased]: https://github.com/Sharparam/facti/compare/{{tag_name}}...HEAD", exactly = 1 }
]
[profile.dist]
inherits = "release"
lto = "thin"
[profile.xtask-dev]
inherits = "dev"
debug-assertions = false
[profile.xtask-release]
inherits = "release"