-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathCargo.toml
More file actions
40 lines (34 loc) · 810 Bytes
/
Cargo.toml
File metadata and controls
40 lines (34 loc) · 810 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
34
35
36
37
38
39
40
[workspace]
resolver = "2"
members = [
"crates/alab-compiler",
"crates/alab-router",
"crates/alab-napi",
]
[workspace.package]
version = "0.4.0"
edition = "2021"
authors = ["Alab Contributors"]
license = "MIT"
repository = "https://github.com/alab-framework/alab"
[workspace.dependencies]
# oxc compiler components
oxc_allocator = "0.119"
oxc_parser = "0.119"
oxc_ast = "0.119"
oxc_span = "0.119"
oxc_transformer = "0.119"
oxc_codegen = "0.119"
oxc_semantic = "0.119"
oxc_sourcemap = "6"
# napi-rs
napi = { version = "2", features = ["napi8"] }
napi-derive = "2"
# utils
serde = { version = "1", features = ["derive"] }
serde_json = "1"
walkdir = "2"
regex = "1"
thiserror = "2"
# image optimisation
image = { version = "0.25", default-features = false, features = ["jpeg", "png", "gif", "webp"] }