* now utilizing tracing better * better tracing * fix mac vs pc oppositional env var issue * modified loading package * added droppable loadingbarid that sends completion message * loading bar * regressed bug on mac * fixed non-updated loading bar on playground * Loading bar improvements --------- Co-authored-by: Jai A <jaiagr+gpg@pm.me>
35 lines
889 B
TOML
35 lines
889 B
TOML
[package]
|
|
name = "theseus_cli"
|
|
version = "0.1.0"
|
|
authors = ["Jai A <jaiagr+gpg@pm.me>"]
|
|
edition = "2018"
|
|
|
|
# See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html
|
|
|
|
[dependencies]
|
|
theseus = { path = "../theseus", features = ["cli"] }
|
|
daedalus = {version = "0.1.15", features = ["bincode"]}
|
|
tokio = { version = "1", features = ["full"] }
|
|
tokio-stream = { version = "0.1", features = ["fs"] }
|
|
futures = "0.3"
|
|
argh = "0.1"
|
|
paris = { version = "1.5", features = ["macros", "no_logger"] }
|
|
dialoguer = "0.10"
|
|
tabled = "0.5"
|
|
dirs = "4.0"
|
|
uuid = {version = "1.1", features = ["v4", "serde"]}
|
|
url = "2.2"
|
|
|
|
color-eyre = "0.6"
|
|
eyre = "0.6"
|
|
tracing = "0.1"
|
|
tracing-error = "0.2"
|
|
tracing-futures = "0.2"
|
|
tracing-subscriber = {version = "0.3", features = ["env-filter"]}
|
|
dunce = "1.0.3"
|
|
|
|
webbrowser = "0.7"
|
|
|
|
[target.'cfg(windows)'.dependencies]
|
|
winreg = "0.11.0"
|