-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathCargo.toml
More file actions
40 lines (37 loc) · 1.21 KB
/
Cargo.toml
File metadata and controls
40 lines (37 loc) · 1.21 KB
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]
members = ["crates/*", "tasks/*"]
resolver = "3"
[workspace.package]
version = "0.2.0"
edition = "2024"
license = "MIT"
repository = "https://github.com/eve0415/oxc-plugin-react-compiler"
homepage = "https://github.com/eve0415/oxc-plugin-react-compiler"
authors = ["eve0415"]
description = "Rust port of babel-plugin-react-compiler"
keywords = ["react", "compiler", "oxc", "vite"]
categories = ["development-tools", "web-programming"]
[workspace.dependencies]
oxc = { version = "0.122.0", features = ["full"] }
oxc_allocator = { version = "0.122.0" }
oxc_ast = { version = "0.122.0" }
oxc_ast_visit = { version = "0.122.0" }
oxc_parser = { version = "0.122.0" }
oxc_semantic = { version = "0.122.0" }
oxc_codegen = { version = "0.122.0" }
oxc_span = { version = "0.122.0" }
oxc_diagnostics = { version = "0.122.0" }
oxc_sourcemap = { version = "6.1.1" }
oxc_syntax = { version = "0.122.0" }
indexmap = "2.13.0"
hmac = "0.12.1"
sha2 = "0.10.9"
regex = "1.12.3"
rayon = "1.11.0"
serde = { version = "1.0.228", features = ["derive"] }
serde_json = "1.0.149"
napi = { version = "3.8.4", features = ["async"] }
napi-derive = "3.5.3"
napi-build = "2.3.1"
insta = { version = "1.47.0" }
uuid = { version = "1.16.0", features = ["v4"] }