20 lines
429 B
TOML
20 lines
429 B
TOML
|
|
[build]
|
||
|
|
# Don't mount host's cargo/rustup - use container's toolchain
|
||
|
|
pre-build = []
|
||
|
|
|
||
|
|
[build.env]
|
||
|
|
passthrough = ["RUST_BACKTRACE"]
|
||
|
|
|
||
|
|
[target.x86_64-unknown-linux-gnu]
|
||
|
|
image = "avif-maker-linux-x86_64"
|
||
|
|
# Use container's Rust instead of host's
|
||
|
|
env.volumes = []
|
||
|
|
|
||
|
|
[target.aarch64-unknown-linux-gnu]
|
||
|
|
image = "avif-maker-linux-arm64"
|
||
|
|
env.volumes = []
|
||
|
|
|
||
|
|
[target.x86_64-pc-windows-gnu]
|
||
|
|
image = "avif-maker-windows-x86_64"
|
||
|
|
env.volumes = []
|