19 lines
741 B
INI
19 lines
741 B
INI
[build]
|
|
jobs = 2 # number of parallel jobs, defaults to # of CPUs
|
|
rustc = ".cargo/bin/rustc" # the rust compiler tool
|
|
rustc-wrapper = ".cargo/bin/sccache" # enable sccache
|
|
|
|
[future-incompat-report]
|
|
frequency = 'always' # when to display a notification about a future incompat report
|
|
|
|
[http]
|
|
debug = false # HTTP debugging
|
|
ssl-version = "tlsv1.3" # TLS version to use
|
|
timeout = 30 # timeout for each HTTP request, in seconds
|
|
low-speed-limit = 10 # network timeout threshold (bytes/sec)
|
|
check-revoke = true # check for SSL certificate revocation
|
|
multiplexing = true # HTTP/2 multiplexing
|
|
|
|
[target.x86_64-unknown-linux-gnu]
|
|
rustflags = ["-C", "target-cpu=native"]
|