xtask/codegen/
parsers_git.rs1use std::fs;
2
3use anyhow::Result;
4
5use crate::schema::Group;
6
7pub fn write() -> Result<()> {
8 let toml_path = crate::WORKSPACE_DIR.join("syntastica-parsers-git/Cargo.toml");
9 let mut toml = fs::read_to_string(&toml_path)?;
10
11 if let Some((preserve, _)) = toml.split_once(super::TOML_AUTOGEN_HEADER) {
12 toml.truncate(preserve.len());
13 }
14 toml += super::TOML_AUTOGEN_HEADER;
15
16 toml += r###"
17[features]
18#! ## Features
19default = ["runtime-c"]
20
21#! Every supported language has a feature with the same name as the respective public function.
22#! Additionally the three feature groups
23#! <span class="stab portability"><code>some</code></span>,
24#! <span class="stab portability"><code>most</code></span>, and
25#! <span class="stab portability"><code>all</code></span>
26#! are available.
27
28## Include parsers for the most widely known supported languages.
29"###;
30
31 toml += &super::parsers_toml_feature(Group::Some);
32 toml += super::TOML_FEATURES_MOST;
33 toml += &super::parsers_toml_feature(Group::Most);
34 toml += super::TOML_FEATURES_ALL;
35 toml += &super::parsers_toml_feature(Group::All);
36
37 toml += r###"
38## Use the standard tree-sitter C runtime. See `syntastica`'s
39## [WebAssembly support](https://rubixdev.github.io/syntastica/syntastica/#webassembly-support)
40## for more information.
41runtime-c = ["syntastica-core/runtime-c"]
42## Use the pure Rust tree-sitter runtime. See `syntastica`'s
43## [WebAssembly support](https://rubixdev.github.io/syntastica/syntastica/#webassembly-support)
44## for more information.
45runtime-c2rust = ["syntastica-core/runtime-c2rust"]
46"###;
47
48 toml += super::TOML_FEATURES_DOCS;
49
50 toml += &super::parsers_toml_lang_features(super::ParserCollection::Git);
51
52 fs::write(&toml_path, toml)?;
53
54 Ok(())
55}