mirror of
https://github.com/openharmony/third_party_rust_bindgen.git
synced 2026-07-01 06:48:29 -04:00
c1e7498e84
Signed-off-by: a30054014 <aipeng3@huawei.com>
45 lines
1.2 KiB
TOML
45 lines
1.2 KiB
TOML
[workspace]
|
|
members = [
|
|
"bindgen",
|
|
"bindgen-cli",
|
|
"bindgen-integration",
|
|
"bindgen-tests",
|
|
"bindgen-tests/tests/quickchecking",
|
|
"bindgen-tests/tests/expectations",
|
|
]
|
|
|
|
default-members = [
|
|
"bindgen",
|
|
"bindgen-cli",
|
|
"bindgen-tests",
|
|
]
|
|
|
|
# Config for 'cargo dist'
|
|
[workspace.metadata.dist]
|
|
# The preferred cargo-dist version to use in CI (Cargo.toml SemVer syntax)
|
|
cargo-dist-version = "0.12.0"
|
|
# CI backends to support
|
|
ci = ["github"]
|
|
# The installers to generate for each app
|
|
installers = ["shell", "powershell"]
|
|
# Target platforms to build apps for (Rust target-triple syntax)
|
|
targets = ["aarch64-apple-darwin", "x86_64-apple-darwin", "x86_64-unknown-linux-gnu"]
|
|
# Whether to consider the binaries in a package for distribution (defaults true)
|
|
dist = false
|
|
# Publish jobs to run in CI
|
|
pr-run-mode = "plan"
|
|
# Whether to install an updater program
|
|
install-updater = false
|
|
|
|
# Config for 'cargo release'
|
|
[workspace.metadata.release]
|
|
shared-version = true # ensures published packages share the same version
|
|
tag-name = "v{{version}}"
|
|
# Don't release any crate unless its manifest has `release = true`
|
|
release = false
|
|
|
|
# The profile that 'cargo dist' will build with
|
|
[profile.dist]
|
|
inherits = "release"
|
|
lto = "thin"
|