Files
advent-of-code-2023-rust/Cargo.toml

17 lines
401 B
TOML

[package]
name = "advent-of-code-2023-rust"
version = "0.1.0"
edition = "2021"
# See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html
[dependencies]
num = "0.4"
# For flamegraph, enable this:
[profile.release]
debug = true
[target.x86_64-unknown-linux-gnu]
linker = "/usr/bin/clang"
rustflags = ["-Clink-arg=-fuse-ld=lld", "-Clink-arg=-Wl,--no-rosegment"]