forked from biomejs/biome
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Cargo.toml
101 lines (93 loc) · 4.67 KB
/
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
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
[workspace]
# Use the newer version of the cargo resolver
# https://doc.rust-lang.org/cargo/reference/resolver.html#resolver-versions
members = [
"crates/*",
"xtask/bench",
"xtask/codegen",
"xtask/coverage",
"xtask/lintdoc",
"xtask/libs_bench",
"xtask/contributors",
]
resolver = "2"
[workspace.package]
authors = ["Biome Developers and Contributors"]
edition = "2021"
homepage = "https://biomejs.dev/"
license = "MIT"
repository = "https://github.com/biomejs/biome"
[profile.release-with-debug]
debug = true
inherits = "release"
[workspace.dependencies]
# Internal crates
biome_analyze = { path = "./crates/biome_analyze" }
biome_aria = { path = "./crates/biome_aria" }
biome_aria_metadata = { path = "./crates/biome_aria_metadata" }
biome_cli = { path = "./crates/biome_cli" }
biome_console = { version = "0.0.1", path = "./crates/biome_console" }
biome_control_flow = { path = "./crates/biome_control_flow" }
biome_css_factory = { path = "./crates/biome_css_factory" }
biome_css_parser = { path = "./crates/biome_css_parser" }
biome_css_syntax = { path = "./crates/biome_css_syntax" }
biome_deserialize = { version = "0.2.0", path = "./crates/biome_deserialize" }
biome_diagnostics = { version = "0.2.0", path = "./crates/biome_diagnostics" }
biome_diagnostics_categories = { version = "0.2.0", path = "./crates/biome_diagnostics_categories" }
biome_diagnostics_macros = { version = "0.0.1", path = "./crates/biome_diagnostics_macros" }
biome_flags = { path = "./crates/biome_flags" }
biome_fs = { path = "./crates/biome_fs" }
biome_js_factory = { version = "0.2.0", path = "./crates/biome_js_factory" }
biome_js_parser = { path = "./crates/biome_js_parser" }
biome_js_semantic = { path = "./crates/biome_js_semantic" }
biome_js_syntax = { version = "0.2.0", path = "./crates/biome_js_syntax" }
biome_js_unicode_table = { version = "0.0.1", path = "./crates/biome_js_unicode_table" }
biome_json_factory = { version = "0.2.0", path = "./crates/biome_json_factory" }
biome_json_syntax = { version = "0.2.0", path = "./crates/biome_json_syntax" }
biome_lsp = { path = "./crates/biome_lsp" }
biome_markup = { version = "0.0.1", path = "./crates/biome_markup" }
biome_migrate = { path = "./crates/biome_migrate" }
biome_parser = { version = "0.2.0", path = "./crates/biome_parser" }
biome_rowan = { version = "0.2.0", path = "./crates/biome_rowan" }
biome_suppression = { version = "0.2.0", path = "./crates/biome_suppression" }
biome_test_utils = { path = "./crates/biome_test_utils" }
biome_text_edit = { version = "0.0.1", path = "./crates/biome_text_edit" }
biome_text_size = { version = "0.0.1", path = "./crates/biome_text_size" }
rome_formatter = { version = "0.1.0", path = "./crates/rome_formatter" }
rome_formatter_test = { path = "./crates/rome_formatter_test" }
rome_js_analyze = { path = "./crates/rome_js_analyze" }
rome_js_formatter = { path = "./crates/rome_js_formatter" }
rome_json_analyze = { path = "./crates/rome_json_analyze" }
rome_json_formatter = { path = "./crates/rome_json_formatter" }
rome_json_parser = { path = "./crates/rome_json_parser" }
rome_service = { path = "./crates/rome_service" }
tests_macros = { path = "./crates/tests_macros" }
# Crates needed in the workspace
atty = "0.2.14"
bitflags = "2.3.1"
bpaf = { version = "0.9.3", features = ["derive"] }
countme = "3.0.1"
dashmap = "5.4.0"
indexmap = "1.9.3"
insta = "1.29.0"
lazy_static = "1.4.0"
quickcheck = "1.0.3"
quickcheck_macros = "1.0.0"
quote = { version = "1.0.28" }
rustc-hash = "1.1.0"
schemars = { version = "0.8.12" }
serde = { version = "1.0.163", features = ["derive"], default-features = false }
serde_json = "1.0.96"
smallvec = { version = "1.10.0", features = ["union", "const_new"] }
tracing = { version = "0.1.37", default-features = false, features = ["std"] }
# pinning to version 1.18 to avoid multiple versions of windows-sys as dependency
tokio = { version = "~1.18.5" }
[profile.dev.package.biome_wasm]
debug = true
opt-level = "s"
[profile.test.package.biome_wasm]
debug = true
opt-level = "s"
[profile.release.package.biome_wasm]
debug = false
opt-level = 3