mirror of
https://github.com/ankitects/anki.git
synced 2025-09-18 14:02:21 -04:00

- Switch to Qt 6.8 for repo default, as 6.7 depends on an older libwebp/tiff which is unavailable on newer installs - Drop tools/mac-x86, as we no longer need to test against Qt 5 - Add flags to cross compile wheels on Mac and Linux - Bump glibc target to 2_36, building on Debian Stable - Increase mpv timeout on macOS to allow for initial gatekeeper checks - Ship both arm64 and amd64 uv on Linux, with a bash stub to pick the appropriate arch.
26 lines
534 B
TOML
26 lines
534 B
TOML
[package]
|
|
name = "launcher"
|
|
version = "1.0.0"
|
|
authors.workspace = true
|
|
edition.workspace = true
|
|
license.workspace = true
|
|
publish = false
|
|
rust-version.workspace = true
|
|
|
|
[dependencies]
|
|
anki_io.workspace = true
|
|
anki_process.workspace = true
|
|
anyhow.workspace = true
|
|
dirs.workspace = true
|
|
|
|
[target.'cfg(windows)'.dependencies]
|
|
winapi.workspace = true
|
|
libc.workspace = true
|
|
libc-stdhandle.workspace = true
|
|
|
|
[[bin]]
|
|
name = "build_win"
|
|
path = "src/bin/build_win.rs"
|
|
|
|
[target.'cfg(windows)'.build-dependencies]
|
|
embed-resource.workspace = true
|