10 lines
252 B
TOML
10 lines
252 B
TOML
[package]
|
|
name = "advent-cli"
|
|
version = "0.1.0"
|
|
edition = "2021"
|
|
|
|
[dependencies]
|
|
clap = { version = "4.4.10", features = ["derive"] }
|
|
tokio = { version = "1.34.0", features = ["macros", "rt-multi-thread"] }
|
|
advent = { path = "../lib" }
|
|
indoc = "2.0.4"
|