Fries
c481999c55
i'm making a cli that lets you add stuff to the names.json file and read data from it and i moved stuff that can be shared between them like the Site struct to a shared crate thats in workspace, like the cli crate. i also switched to using typed json parsing which works well.
19 lines
256 B
TOML
19 lines
256 B
TOML
[package]
|
|
name = "cli"
|
|
version = "0.1.0"
|
|
edition = "2021"
|
|
|
|
[dependencies]
|
|
serde = "1.0"
|
|
serde_json = "1.0"
|
|
|
|
[dependencies.clap]
|
|
version = "4"
|
|
features = ["derive"]
|
|
|
|
[dependencies.shared]
|
|
path = "../shared"
|
|
|
|
[[bin]]
|
|
name = "meowy-cli"
|
|
path = "src/main.rs"
|