-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathcargo-atcoder.toml
32 lines (26 loc) · 971 Bytes
/
cargo-atcoder.toml
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
# https://github.com/tanakh/cargo-atcoder/blob/master/config/cargo-atcoder.toml
[atcoder]
submit_via_binary = false # submit via binary by default
use_cross = false # use `cross` instead of `cargo` when generating binaries
binary_column = 80 # maximum column number of generated binary (0 for no wrapping)
update_interval = 1000 # interval time of fetching result (ms)
strip_path = "strip" # specify `strip` command path. NOTE: if you use macOS, you have to install GNU strip and specify its path here.
[profile]
# target to use to generate binary
target = "x86_64-unknown-linux-musl"
[profile.release]
lto = true
panic = 'abort'
# dependencies added to new project
[dependencies]
# proconio = "*"
# competitive = { git = "https://github.com/tanakh/competitive-rs.git" }
[project]
# to create `rust-toolchain` file, uncomment this line.
# rustc_version = "1.15.1"
# source code template
template = """
fn main() {
unimplemented!();
}
"""