-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathCargo.toml
28 lines (27 loc) · 920 Bytes
/
Cargo.toml
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
[package]
name = "lagoss-cli"
version = "0.1.0"
edition = "2021"
[dependencies]
lagoss-runtime = { path = "../runtime" }
lagoss-runtime-http = { path = "../runtime_http" }
lagoss-runtime-isolate = { path = "../runtime_isolate" }
lagoss-runtime-utils = { path = "../runtime_utils" }
clap = { version = "4.3.19", features = ["derive"] }
dialoguer = { version = "0.10.4", features = ["password"] }
indicatif = "0.17.5"
dirs = "5.0.1"
webbrowser = "0.8.10"
tokio = { version = "1", features = ["rt-multi-thread", "macros", "sync"] }
hyper = { version = "0.14.27", features = ["server", "http1", "runtime", "stream"] }
reqwest = { version = "0.11.18", default-features = false, features = ["rustls-tls"] }
serde = { version = "1.0", features = ["derive"] }
serde_json = "1.0"
walkdir = "2.3.3"
pathdiff = "0.2.1"
flume = "0.10.14"
chrono = "0.4.26"
notify = "6.0.1"
envfile = "0.2.1"
anyhow = "1.0.72"
urlencoding = "2.1.3"