-
Notifications
You must be signed in to change notification settings - Fork 2
/
Cargo.toml
30 lines (27 loc) · 927 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
30
[workspace]
resolver = "2"
members = ["cli", "core", "runtime"]
[workspace.package]
authors = ["the Andromeda team"]
edition = "2021"
license = "Mozilla Public License 2.0"
repository = "https://github.com/tryandromeda/andromeda"
version = "0.1.0"
[workspace.dependencies]
andromeda-core = { path = "core" }
andromeda-runtime = { path = "runtime" }
anyhow = "1.0.42"
anymap = "0.12.1"
clap = { version = "4.5.16", features = ["derive"] }
cliclack = "0.3.3"
console = "0.15.8"
miette = { version = "7.2.0", features = ["fancy"] }
nova_vm = { git = "https://github.com/trynova/nova", branch = "main", features = ["typescript"] }
oxc_ast = "0.24.3"
oxc_parser = "0.24.3"
oxc_span = "0.24.3"
oxc_diagnostics = "0.24.3"
oxc_semantic = "0.24.3"
serde = { version = "1.0.130", features = ["derive"] }
tokio = { version = "1.39.0", features = ["rt", "sync", "time"]}
url = { version = "2", features = ["serde", "expose_internals"] }