-
-
Notifications
You must be signed in to change notification settings - Fork 99
/
Copy pathCargo.toml
64 lines (61 loc) · 4.59 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
[package]
description = "Crate used to generate pages from the Rust source code of Biome"
edition = "2024"
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.97"
biome_analyze = { git = "https://github.com/biomejs/biome.git", rev = "8a832f29581970bd2dab0aa004f0df2ec26c4e96", features = [
"schema",
] }
biome_cli = { git = "https://github.com/biomejs/biome.git", rev = "8a832f29581970bd2dab0aa004f0df2ec26c4e96" }
biome_configuration = { git = "https://github.com/biomejs/biome.git", rev = "8a832f29581970bd2dab0aa004f0df2ec26c4e96", features = [
"schema",
] }
biome_console = { git = "https://github.com/biomejs/biome.git", rev = "8a832f29581970bd2dab0aa004f0df2ec26c4e96" }
biome_css_analyze = { git = "https://github.com/biomejs/biome.git", rev = "8a832f29581970bd2dab0aa004f0df2ec26c4e96" }
biome_css_parser = { git = "https://github.com/biomejs/biome.git", rev = "8a832f29581970bd2dab0aa004f0df2ec26c4e96" }
biome_css_syntax = { git = "https://github.com/biomejs/biome.git", rev = "8a832f29581970bd2dab0aa004f0df2ec26c4e96" }
biome_dependency_graph = { git = "https://github.com/biomejs/biome.git", rev = "8a832f29581970bd2dab0aa004f0df2ec26c4e96" }
biome_deserialize = { git = "https://github.com/biomejs/biome.git", rev = "8a832f29581970bd2dab0aa004f0df2ec26c4e96" }
biome_diagnostics = { git = "https://github.com/biomejs/biome.git", rev = "8a832f29581970bd2dab0aa004f0df2ec26c4e96" }
biome_flags = { git = "https://github.com/biomejs/biome.git", rev = "8a832f29581970bd2dab0aa004f0df2ec26c4e96" }
biome_formatter = { git = "https://github.com/biomejs/biome.git", rev = "8a832f29581970bd2dab0aa004f0df2ec26c4e96" }
biome_fs = { git = "https://github.com/biomejs/biome.git", rev = "8a832f29581970bd2dab0aa004f0df2ec26c4e96" }
biome_graphql_analyze = { git = "https://github.com/biomejs/biome.git", rev = "8a832f29581970bd2dab0aa004f0df2ec26c4e96" }
biome_graphql_parser = { git = "https://github.com/biomejs/biome.git", rev = "8a832f29581970bd2dab0aa004f0df2ec26c4e96" }
biome_graphql_syntax = { git = "https://github.com/biomejs/biome.git", rev = "8a832f29581970bd2dab0aa004f0df2ec26c4e96" }
biome_html_formatter = { git = "https://github.com/biomejs/biome.git", rev = "8a832f29581970bd2dab0aa004f0df2ec26c4e96", features = [
"schema",
] }
biome_html_parser = { git = "https://github.com/biomejs/biome.git", rev = "8a832f29581970bd2dab0aa004f0df2ec26c4e96" }
biome_html_syntax = { git = "https://github.com/biomejs/biome.git", rev = "8a832f29581970bd2dab0aa004f0df2ec26c4e96" }
biome_js_analyze = { git = "https://github.com/biomejs/biome.git", rev = "8a832f29581970bd2dab0aa004f0df2ec26c4e96" }
biome_js_formatter = { git = "https://github.com/biomejs/biome.git", rev = "8a832f29581970bd2dab0aa004f0df2ec26c4e96" }
biome_js_parser = { git = "https://github.com/biomejs/biome.git", rev = "8a832f29581970bd2dab0aa004f0df2ec26c4e96" }
biome_js_syntax = { git = "https://github.com/biomejs/biome.git", rev = "8a832f29581970bd2dab0aa004f0df2ec26c4e96" }
biome_json_analyze = { git = "https://github.com/biomejs/biome.git", rev = "8a832f29581970bd2dab0aa004f0df2ec26c4e96" }
biome_json_factory = { git = "https://github.com/biomejs/biome.git", rev = "8a832f29581970bd2dab0aa004f0df2ec26c4e96" }
biome_json_formatter = { git = "https://github.com/biomejs/biome.git", rev = "8a832f29581970bd2dab0aa004f0df2ec26c4e96" }
biome_json_parser = { git = "https://github.com/biomejs/biome.git", rev = "8a832f29581970bd2dab0aa004f0df2ec26c4e96" }
biome_json_syntax = { git = "https://github.com/biomejs/biome.git", rev = "8a832f29581970bd2dab0aa004f0df2ec26c4e96" }
biome_project_layout = { git = "https://github.com/biomejs/biome.git", rev = "8a832f29581970bd2dab0aa004f0df2ec26c4e96" }
biome_rowan = { git = "https://github.com/biomejs/biome.git", rev = "8a832f29581970bd2dab0aa004f0df2ec26c4e96" }
biome_service = { git = "https://github.com/biomejs/biome.git", rev = "8a832f29581970bd2dab0aa004f0df2ec26c4e96" }
biome_string_case = { git = "https://github.com/biomejs/biome.git", rev = "8a832f29581970bd2dab0aa004f0df2ec26c4e96" }
biome_text_edit = { git = "https://github.com/biomejs/biome.git", rev = "8a832f29581970bd2dab0aa004f0df2ec26c4e96" }
bpaf = { version = "0.9.18", features = ["docgen"] }
# If you update this library, be aware of the breaking changes
camino = "1.1.9"
pulldown-cmark = "0.13.0"
schemars = "0.8.22"
serde = "1.0.217"
serde_json = "1.0.139"