ips/Cargo.toml
Till Wegmueller 7fb3793c54
Remove Jenkinsfile, add Illumos builds to GitHub Actions, and document release process
- Deleted the Jenkinsfile, transitioning all CI workflows to GitHub Actions.
- Added Illumos (OpenIndiana) build and release steps to GitHub workflows.
- Created a new release pipeline triggered by version tags starting with `v`.
- Updated README with release instructions using `cargo-release`.
2026-01-18 14:59:24 +01:00

31 lines
673 B
TOML

[workspace]
# Order is important as this is the order the crates will be released.
members = [
"libips",
"pkg6depotd",
"pkg6repo",
"userland",
"specfile",
"ports",
"pkg6",
"pkgtree",
"xtask",
]
resolver = "2"
[workspace.package]
version = "0.5.1"
edition = "2024"
license-file = "LICENSE"
repository = "https://github.com/OpenFlowLabs/ips"
readme = "README.md"
keywords = ["packaging", "illumos"]
authors = ["Till Wegmueller <toasterson@gmail.com>"]
[workspace.metadata.release]
push = false
tag = true
pre-release-commit-message = "chore: Release {{version}}"
tag-message = "chore: Release {{version}}"
consolidate-commits = true
shared-version = true