blob: e4ffeebadf32085a44c9cec41323b3cc13074aae (
plain) (
blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
|
[build]
# Use bundled crates; this should permit offline build.
vendor = true
# In addition to rustc, rust-std and rust-docs, build Cargo.
extended = true
# python(1) location.
python = "%PYTHON_CMD%"
# Do we want to build docs?
docs = %DOCS%
[install]
# Install location.
prefix = "%PREFIX%"
sysconfdir = "%SYSCONFDIR%"
mandir = "%MANDIR%"
[rust]
# Rust release channel.
channel = "%CHANNEL%"
[target.%TARGET%]
[dist]
# Do not build the source archive.
src-tarball = false
|