cli: work on basic cli and serde error hanlding

This commit is contained in:
Schrottkatze 2024-01-11 10:44:12 +01:00
commit e7db9c38f3
Signed by: schrottkatze
GPG key ID: DFD0FD205943C14A
5 changed files with 148 additions and 3 deletions

13
crates/app/Cargo.toml Normal file
View file

@ -0,0 +1,13 @@
[package]
name = "app"
version = "0.1.0"
edition = "2021"
# See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html
[dependencies]
clap = { workspace = true, features = [ "derive" ] }
serde = { workspace = true, features = [ "derive" ] }
ron = { workspace = true }
serde_json = { workspace = true }
ariadne = "0.4"