forked from tryandromeda/andromeda
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathCargo.toml
More file actions
33 lines (29 loc) · 994 Bytes
/
Cargo.toml
File metadata and controls
33 lines (29 loc) · 994 Bytes
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
[workspace]
resolver = "2"
members = ["cli", "core", "runtime"]
[workspace.package]
authors = ["the Andromeda team"]
edition = "2024"
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.94"
anymap = "0.12.1"
clap = { version = "4.5.23", features = ["derive"] }
cliclack = "0.3.5"
console = "0.15.8"
nova_vm = { git = "https://github.com/trynova/nova", rev = "393be1488c62951b6b9cd5b321d9f36c80f16c70", features = ["typescript"] }
oxc_ast = "0.51.0"
oxc_diagnostics = "0.51.0"
oxc-miette = { version = "1.0.2", features = ["fancy"] }
oxc_parser = "0.51.0"
oxc_semantic = "0.51.0"
oxc_span = "0.51.0"
serde = { version = "1.0.130", features = ["derive"] }
tokio = { version = "1.39.0", features = ["rt", "sync", "time"]}
url = { version = "2", features = ["serde", "expose_internals"] }
[profile.release]
lto = true