diff options
author | Blaž Hrastnik | 2021-03-25 06:26:25 +0000 |
---|---|---|
committer | Blaž Hrastnik | 2021-03-25 06:26:25 +0000 |
commit | e3c4edae32f6d70bf20655c7c25b3cdf39f3f281 (patch) | |
tree | 5351a5a797de5f213b87f25ae4ba049c8e74d11b /Cargo.lock | |
parent | a900159a863c24e4afb1485d8dcff760f722f36b (diff) |
Add the machinery to load syntax config from TOML.
It's embedded into the binary at build time for now, but it's progress.
Diffstat (limited to 'Cargo.lock')
-rw-r--r-- | Cargo.lock | 12 |
1 files changed, 12 insertions, 0 deletions
@@ -489,6 +489,7 @@ dependencies = [ "once_cell", "regex", "ropey", + "serde", "smallvec", "tendril", "tree-sitter", @@ -523,6 +524,7 @@ name = "helix-syntax" version = "0.1.0" dependencies = [ "cc", + "serde", "threadpool", "tree-sitter", ] @@ -549,6 +551,7 @@ dependencies = [ "pulldown-cmark", "smol", "smol-timeout", + "toml", "tui", ] @@ -1208,6 +1211,15 @@ source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "cda74da7e1a664f795bb1f8a87ec406fb89a02522cf6e50620d016add6dbbf5c" [[package]] +name = "toml" +version = "0.5.8" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "a31142970826733df8241ef35dc040ef98c679ab14d7c3e54d827099b3acecaa" +dependencies = [ + "serde", +] + +[[package]] name = "tree-sitter" version = "0.17.1" source = "registry+https://github.com/rust-lang/crates.io-index" |