17 lines
555 B
TOML
17 lines
555 B
TOML
[build]
|
|
rustdocflags = [
|
|
"-Dwarnings",
|
|
"-Arustdoc::redundant_explicit_links", # stylistic
|
|
]
|
|
|
|
[env]
|
|
# Needed for musl builds so user doesn't have to install musl-tools.
|
|
CC_x86_64_unknown_linux_musl = { value = ".cargo/musl-gcc", force = true, relative = true }
|
|
CXX_x86_64_unknown_linux_musl = { value = ".cargo/musl-g++", force = true, relative = true }
|
|
CARGO_WORKSPACE_ROOT_DIR = { value = "", relative = true }
|
|
SQLX_OFFLINE = "true"
|
|
|
|
[net]
|
|
retry = 5
|
|
# git-fetch-with-cli = true # commented because there is a risk that a runner can be banned by github
|