adventofcode2023/day9/Cargo.toml
2023-12-18 01:27:17 +01:00

18 lines
289 B
TOML

[package]
name = "day9"
version = "0.1.0"
edition = "2021"
default-run = "main"
# See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html
[dependencies]
[[bin]]
name = "main"
path= "src/main.rs"
[[bin]]
name = "newton"
path= "src/main_newton.rs"