advent-of-code/2022/day-2_rock_paper_scissors/Cargo.toml

23 lines
512 B
TOML
Raw Normal View History

[package]
name = "rock_paper_scissors"
version = "0.1.0"
edition = "2021"
# See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html
[lib]
name = "rock_paper_scissors_lib"
path = "src/lib.rs"
[[bin]]
name = "rock_paper_scissors"
path = "src/bin.rs"
[dependencies]
common = {path = "../common/"}
clap = {version = "4.0.22", features = ["derive"]}
tracing = "0.1"
tracing-subscriber = {version = "0.3.16", features = ["env-filter"]}
strum = "0.24.1"
strum_macros = "0.24"