-
-
Notifications
You must be signed in to change notification settings - Fork 82
/
Cargo.toml
51 lines (48 loc) · 3.94 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
[package]
description = "Crate used to generate pages from the Rust source code of Biome"
edition = "2021"
name = "codegen"
publish = false
version = "0.1.0"
[[bin]]
name = "codegen"
path = "codegen/src/main.rs"
[lib]
name = "codegen"
path = "codegen/src/lib.rs"
# See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html
[dependencies]
anyhow = "1.0.93"
biome_analyze = { git = "https://github.com/biomejs/biome.git", rev = "516314c188f9a25f7ae4f1659446ceb3a604112c" }
biome_cli = { git = "https://github.com/biomejs/biome.git", rev = "516314c188f9a25f7ae4f1659446ceb3a604112c" }
biome_configuration = { git = "https://github.com/biomejs/biome.git", rev = "516314c188f9a25f7ae4f1659446ceb3a604112c" }
biome_console = { git = "https://github.com/biomejs/biome.git", rev = "516314c188f9a25f7ae4f1659446ceb3a604112c" }
biome_css_analyze = { git = "https://github.com/biomejs/biome.git", rev = "516314c188f9a25f7ae4f1659446ceb3a604112c" }
biome_css_parser = { git = "https://github.com/biomejs/biome.git", rev = "516314c188f9a25f7ae4f1659446ceb3a604112c" }
biome_css_syntax = { git = "https://github.com/biomejs/biome.git", rev = "516314c188f9a25f7ae4f1659446ceb3a604112c" }
biome_deserialize = { git = "https://github.com/biomejs/biome.git", rev = "516314c188f9a25f7ae4f1659446ceb3a604112c" }
biome_diagnostics = { git = "https://github.com/biomejs/biome.git", rev = "516314c188f9a25f7ae4f1659446ceb3a604112c" }
biome_fs = { git = "https://github.com/biomejs/biome.git", rev = "516314c188f9a25f7ae4f1659446ceb3a604112c" }
biome_flags = { git = "https://github.com/biomejs/biome.git", rev = "516314c188f9a25f7ae4f1659446ceb3a604112c" }
biome_graphql_analyze = { git = "https://github.com/biomejs/biome.git", rev = "516314c188f9a25f7ae4f1659446ceb3a604112c" }
biome_graphql_parser = { git = "https://github.com/biomejs/biome.git", rev = "516314c188f9a25f7ae4f1659446ceb3a604112c" }
biome_graphql_syntax = { git = "https://github.com/biomejs/biome.git", rev = "516314c188f9a25f7ae4f1659446ceb3a604112c" }
biome_js_analyze = { git = "https://github.com/biomejs/biome.git", rev = "516314c188f9a25f7ae4f1659446ceb3a604112c" }
biome_js_formatter = { git = "https://github.com/biomejs/biome.git", rev = "516314c188f9a25f7ae4f1659446ceb3a604112c" }
biome_js_parser = { git = "https://github.com/biomejs/biome.git", rev = "516314c188f9a25f7ae4f1659446ceb3a604112c" }
biome_js_syntax = { git = "https://github.com/biomejs/biome.git", rev = "516314c188f9a25f7ae4f1659446ceb3a604112c" }
biome_json_analyze = { git = "https://github.com/biomejs/biome.git", rev = "516314c188f9a25f7ae4f1659446ceb3a604112c" }
biome_json_factory = { git = "https://github.com/biomejs/biome.git", rev = "516314c188f9a25f7ae4f1659446ceb3a604112c" }
biome_json_formatter = { git = "https://github.com/biomejs/biome.git", rev = "516314c188f9a25f7ae4f1659446ceb3a604112c" }
biome_json_parser = { git = "https://github.com/biomejs/biome.git", rev = "516314c188f9a25f7ae4f1659446ceb3a604112c" }
biome_json_syntax = { git = "https://github.com/biomejs/biome.git", rev = "516314c188f9a25f7ae4f1659446ceb3a604112c" }
biome_rowan = { git = "https://github.com/biomejs/biome.git", rev = "516314c188f9a25f7ae4f1659446ceb3a604112c" }
biome_service = { git = "https://github.com/biomejs/biome.git", rev = "516314c188f9a25f7ae4f1659446ceb3a604112c" }
biome_string_case = { git = "https://github.com/biomejs/biome.git", rev = "516314c188f9a25f7ae4f1659446ceb3a604112c" }
biome_text_edit = { git = "https://github.com/biomejs/biome.git", rev = "516314c188f9a25f7ae4f1659446ceb3a604112c" }
bpaf = { version = "0.9.15", features = ["docgen"] }
# If you update this library, be aware of the breaking changes
pulldown-cmark = "0.10.3"
schemars = "0.8.21"
serde = "1.0.210"
serde_json = "1.0.133"