-
Notifications
You must be signed in to change notification settings - Fork 10
/
Copy pathCargo.toml
71 lines (64 loc) · 1.89 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
70
71
[package]
name = "dune"
version = "0.9.3"
authors = ["Alex Alikiotis <[email protected]>"]
edition = "2021"
license = "MIT"
readme = "README.md"
repository = "https://github.com/aalykiot/dune"
description = "A hobby runtime for JavaScript and TypeScript 🚀"
[[bin]]
name = "dune"
# See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html
[dependencies.dune_event_loop]
git = "https://github.com/aalykiot/dune-event-loop"
branch = "main"
[dependencies]
v8 = { version = "130.0.6", default-features = false }
clap = { version = "4.5.24", features = ["derive"] }
anyhow = "1.0.95"
colored = "3.0.0"
rustyline = "15.0.0"
rustyline-derive = "0.11.0"
lazy_static = "1.5.0"
sha = "1.0.3"
regex = "1.11.1"
dirs = "5.0.1"
path-absolutize = "3.1.1"
ureq = { version = "2.12.1", features = ["charset"] }
phf = { version = "0.11.3", features = ["macros"] }
url = "2.5.4"
clearscreen = "4.0.1"
bincode = "1.3.3"
swc_common = { version = "5.0.0", features = ["tty-emitter", "sourcemap"] }
swc_ecma_codegen = "5.0.1"
swc_ecma_parser = "6.0.1"
swc_ecma_transforms_base = "7.0.0"
swc_ecma_transforms_typescript = "7.0.0"
swc_ecma_transforms_react = "7.0.0"
swc_bundler = "7.0.0"
swc_ecma_ast = "5.0.1"
swc_ecma_loader = "5.0.0"
swc_atoms = "3.0.2"
swc_ecma_transforms = "9.0.0"
serde = { version = "1.0.217", features = ["derive"] }
serde_json = "1.0.135"
dns-lookup = "2.0.4"
tempdir = "0.3.7"
zstd = "0.13.2"
notify = "7.0.0"
httparse = "1.9.5"
pest = "2.7.15"
pest_derive = "2.7.15"
futures = "0.3.31"
tokio = { version = "1.42.0", features = ["full"] }
axum = { version = "0.8.1", features = ["ws"] }
uuid = { version = "1.11.0", features = ["v4", "fast-rng"] }
base64 = "0.22.1"
indicatif = "0.17.9"
[target.'cfg(unix)'.dependencies]
nix = { version = "0.29.0", features = ["signal"] }
[target.'cfg(windows)'.dependencies]
enable-ansi-support = "0.2.1"
[dev-dependencies]
assert_fs = "1.1.2"