From b4f59c226c6916a3e45f1a52dc6a9b15c800297a Mon Sep 17 00:00:00 2001 From: fx Date: Wed, 18 Oct 2023 15:11:44 +0200 Subject: basic cli, only start and get device --- Cargo.toml | 15 +++++++++++++++ 1 file changed, 15 insertions(+) create mode 100644 Cargo.toml (limited to 'Cargo.toml') diff --git a/Cargo.toml b/Cargo.toml new file mode 100644 index 0000000..2807827 --- /dev/null +++ b/Cargo.toml @@ -0,0 +1,15 @@ +[package] +name = "webol-cli" +version = "0.1.0" +edition = "2021" + +# See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html + +[dependencies] +clap = { version = "4.4.6", features = ["derive"] } +config = "0.13.3" +dirs = "5.0.1" +once_cell = "1.18.0" +reqwest = { version = "0.11.22", features = ["blocking"] } +serde = "1.0.189" +serde_json = "1.0.107" -- cgit v1.2.3