Fries
0e3ffc0991
this should make the code cleaner if we need to add more crates as it can get messy if we keep stacking crates in the root directory
25 lines
358 B
TOML
25 lines
358 B
TOML
[package]
|
|
name = "cli"
|
|
version = "0.1.0"
|
|
edition = "2021"
|
|
|
|
[dependencies]
|
|
serde = "1.0"
|
|
serde_json = "1.0"
|
|
log = "0.4"
|
|
|
|
[dependencies.clap]
|
|
version = "4"
|
|
features = ["derive"]
|
|
|
|
[dependencies.shared]
|
|
path = "../shared"
|
|
|
|
[dependencies.simple_logger]
|
|
version = "4"
|
|
default-features = false
|
|
features = ["stderr"]
|
|
|
|
[[bin]]
|
|
name = "meowy-cli"
|
|
path = "src/main.rs"
|