initial boilerplate for the shell

This commit is contained in:
lemonsh
2023-05-13 00:35:20 +02:00
parent 84fefcda09
commit b11c20d512
4 changed files with 144 additions and 2 deletions

View File

@ -1,5 +1,7 @@
[package]
name = "connectbox-shell"
description = "A shell for managing your Connect Box router, based on the connectbox-rs library"
authors = ["lemonsh"]
version = "0.1.0"
edition = "2021"
@ -7,4 +9,10 @@ edition = "2021"
rustyline = "11"
color-eyre = "0.6"
tokio = { version = "1.0", default-features = false, features = ["macros"] }
tracing = "0.1"
tracing-subscriber = "0.3"
clap = { version = "4.2", default-features = false, features = ["suggestions", "color", "std", "help", "usage", "derive"] }
dirs = "5.0"
connectbox = { path = "../connectbox" }
color-print = "0.3"
anstream = "0.3"