forked from voidzero-dev/oxc-angular-compiler
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathCargo.toml
More file actions
43 lines (38 loc) · 1.01 KB
/
Cargo.toml
File metadata and controls
43 lines (38 loc) · 1.01 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
41
42
43
[package]
name = "oxc_angular_compiler"
version = "0.1.0"
authors.workspace = true
categories.workspace = true
homepage.workspace = true
keywords.workspace = true
license.workspace = true
repository.workspace = true
description.workspace = true
edition.workspace = true
rust-version.workspace = true
readme = "README.md"
[lib]
doctest = false
[dependencies]
oxc_allocator = { workspace = true }
oxc_ast = { workspace = true }
oxc_diagnostics = { workspace = true }
oxc_parser = { workspace = true }
oxc_semantic = { workspace = true }
oxc_span = { workspace = true }
oxc_sourcemap = { workspace = true }
miette = { workspace = true }
rustc-hash = { workspace = true }
indexmap = { workspace = true }
lightningcss = "1.0.0-alpha.71"
oxc_resolver = { version = "11", optional = true }
pathdiff = { version = "0.2", optional = true }
semver = "1.0.27"
[features]
default = []
cross_file_elision = ["oxc_resolver", "pathdiff"]
[dev-dependencies]
insta = { workspace = true, features = ["glob"] }
tempfile = "3"
[lints]
workspace = true