forked from lagonapp/lagon
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathCargo.toml
29 lines (28 loc) · 871 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
29
[package]
name = "lagon-cli"
version = "0.1.0"
edition = "2021"
[dependencies]
lagon-runtime = { path = "../runtime" }
lagon-runtime-http = { path = "../runtime_http" }
lagon-runtime-isolate = { path = "../runtime_isolate" }
lagon-runtime-utils = { path = "../runtime_utils" }
clap = { version = "4.2.4", features = ["derive"] }
dialoguer = "0.10.4"
indicatif = "0.17.3"
colored = "2.0.0"
dirs = "5.0.0"
webbrowser = "0.8.9"
tokio = { version = "1", features = ["rt-multi-thread", "macros", "sync"] }
hyper = { version = "0.14", features = ["client", "server", "http1", "runtime", "stream"] }
serde = { version = "1.0", features = ["derive"] }
serde_json = "1.0"
walkdir = "2.3.3"
pathdiff = "0.2.1"
hyper-tls = { version = "0.5.0", features = ["vendored"] }
flume = "0.10.14"
chrono = "0.4.24"
notify = "5.1.0"
envfile = "0.2.1"
anyhow = "1.0.70"
urlencoding = "2.1.2"