mirror of
https://github.com/adriankumpf/tesla_auth.git
synced 2026-02-27 09:54:03 +08:00
26 lines
742 B
TOML
26 lines
742 B
TOML
[workspace]
|
|
members = ["cargo:."]
|
|
|
|
# Config for 'dist'
|
|
[dist]
|
|
# The preferred dist version to use in CI (Cargo.toml SemVer syntax)
|
|
cargo-dist-version = "0.30.2"
|
|
# CI backends to support
|
|
ci = "github"
|
|
# The installers to generate for each app
|
|
installers = []
|
|
# Target platforms to build apps for (Rust target-triple syntax)
|
|
targets = ["aarch64-apple-darwin", "x86_64-apple-darwin", "x86_64-unknown-linux-gnu", "x86_64-pc-windows-msvc"]
|
|
# Which actions to run on pull requests
|
|
pr-run-mode = "upload"
|
|
|
|
[dist.dependencies.apt]
|
|
"webkit2gtk-4.1" = '*'
|
|
libxdo-dev = '*'
|
|
|
|
[dist.github-custom-runners]
|
|
aarch64-apple-darwin = "macos-14"
|
|
x86_64-apple-darwin = "macos-14"
|
|
x86_64-pc-windows-msvc = "windows-2022"
|
|
x86_64-unknown-linux-gnu = "ubuntu-24.04"
|