-
Notifications
You must be signed in to change notification settings - Fork 1
/
Cargo.toml
69 lines (65 loc) · 1.67 KB
/
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
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
[package]
name = "justjs"
version = "0.5.2"
edition = "2021"
license = "MIT"
homepage = "https://justjs.dev"
repository = "https://github.com/exact-rs/just"
description = "A modern runtime for javascript."
rust-version = "1.71.0"
[[bin]]
name = "just"
path = "src/main.rs"
[dependencies]
# local
state = { package = "just_state", path = "./crates/state", version = "0.2.0" }
macros = { package = "macros-rs", path = "./crates/macros", version = "0.4.0" }
# remote
colored = "2"
url = "2.3.1"
hex = "0.4.3"
tar = "0.4.38"
dirs = "4.0.0"
home = "0.5.4"
open = "3.2.0"
warp = "0.3.3"
log = "0.4.17"
http = "0.2.9"
sha2 = "0.10.6"
brown = "0.2.0"
sled = "0.34.7"
libc = "0.2.137"
nanoid = "0.4.0"
base64 = "0.20.0"
flate2 = "1.0.25"
anyhow = "1.0.66"
sqlite = "0.30.1"
serde = "1.0.147"
inquire = "0.5.2"
question = "0.2.2"
data-url = "0.2.0"
termcolor = "1.2.0"
rustyline = "9.1.2"
indicatif = "0.17.2"
serde_json = "1.0.87"
serde_yaml = "0.9.14"
zip-extract = "0.1.1"
exact-panic = "0.0.7"
env_logger = "0.10.0"
esbuild-rs = "0.13.8"
colored_json = "3.1.0"
futures-util = "0.3.25"
v_htmlescape = "0.15.8"
data-encoding = "2.3.2"
async-process = "1.6.0"
duration-string = "0.1.1"
clap-verbosity-flag = "2.0.0"
tokio = { version = "1.24.2", features = ["full"] }
clap = { version = "4.0.27", features = ["derive"] }
shell = { version = "0.2.0", package = "rust-shell" }
engine = { package = "deno_core", version = "0.160.0" }
uuid = { version = "0.8.0", features = ["v4"], default-features = false }
ast = { package = "deno_ast", version = "0.21.0", features = ["transpiling"] }
reqwest = { version = "0.11.12", features = ["blocking", "json", "multipart", "stream"] }
[build-dependencies]
chrono = "0.4.23"