mirror of https://github.com/astral-sh/uv
Sort and expand target triples in Cargo.toml (#2858)
## Summary Too hard to read as-is.
This commit is contained in:
parent
d4a258422b
commit
424d7ab610
20
Cargo.toml
20
Cargo.toml
|
|
@ -207,8 +207,24 @@ windows-archive = ".zip"
|
||||||
# The archive format to use for non-windows builds (defaults .tar.xz)
|
# The archive format to use for non-windows builds (defaults .tar.xz)
|
||||||
unix-archive = ".tar.gz"
|
unix-archive = ".tar.gz"
|
||||||
# Target platforms to build apps for (Rust target-triple syntax)
|
# Target platforms to build apps for (Rust target-triple syntax)
|
||||||
targets = ["aarch64-unknown-linux-gnu", "x86_64-unknown-linux-gnu", "i686-unknown-linux-gnu", "aarch64-apple-darwin", "x86_64-apple-darwin", "aarch64-unknown-linux-musl", "x86_64-unknown-linux-musl", "i686-unknown-linux-musl", "x86_64-pc-windows-msvc", "i686-pc-windows-msvc", "armv7-unknown-linux-gnueabihf", "powerpc64-unknown-linux-gnu", "powerpc64le-unknown-linux-gnu", "s390x-unknown-linux-gnu", "armv7-unknown-linux-musleabihf", "arm-unknown-linux-musleabihf"]
|
targets = [
|
||||||
# Whether to auto-include files like READMEs and CHANGELOGs (default true)
|
"aarch64-apple-darwin",
|
||||||
|
"aarch64-unknown-linux-gnu",
|
||||||
|
"aarch64-unknown-linux-musl",
|
||||||
|
"arm-unknown-linux-musleabihf",
|
||||||
|
"armv7-unknown-linux-gnueabihf",
|
||||||
|
"armv7-unknown-linux-musleabihf",
|
||||||
|
"i686-pc-windows-msvc",
|
||||||
|
"i686-unknown-linux-gnu",
|
||||||
|
"i686-unknown-linux-musl",
|
||||||
|
"powerpc64-unknown-linux-gnu",
|
||||||
|
"powerpc64le-unknown-linux-gnu",
|
||||||
|
"s390x-unknown-linux-gnu",
|
||||||
|
"x86_64-apple-darwin",
|
||||||
|
"x86_64-pc-windows-msvc",
|
||||||
|
"x86_64-unknown-linux-gnu",
|
||||||
|
"x86_64-unknown-linux-musl",
|
||||||
|
]# Whether to auto-include files like READMEs and CHANGELOGs (default true)
|
||||||
auto-includes = false
|
auto-includes = false
|
||||||
# Whether cargo-dist should create a Github Release or use an existing draft
|
# Whether cargo-dist should create a Github Release or use an existing draft
|
||||||
create-release = true
|
create-release = true
|
||||||
|
|
|
||||||
Loading…
Reference in New Issue