14 unstable releases (6 breaking)

0.24.0 Jan 11, 2025
0.23.2 Nov 11, 2024
0.23.1 Sep 26, 2024
0.22.0 Mar 23, 2024
0.19.0 Mar 9, 2021

#116 in Text editors

Download history 151/week @ 2024-11-21 133/week @ 2024-11-28 396/week @ 2024-12-05 374/week @ 2024-12-12 1090/week @ 2024-12-19 637/week @ 2024-12-26 1007/week @ 2025-01-02 1000/week @ 2025-01-09 726/week @ 2025-01-16 671/week @ 2025-01-23 827/week @ 2025-01-30 1231/week @ 2025-02-06 1134/week @ 2025-02-13 992/week @ 2025-02-20 939/week @ 2025-02-27 914/week @ 2025-03-06

4,268 downloads per month
Used in 13 crates (9 directly)

MIT license

94MB
3M SLoC

C 3M SLoC JavaScript 1.5K SLoC // 0.0% comments Scheme 179 SLoC // 0.2% comments Rust 76 SLoC

tree-sitter-ocaml

CI crates

This crate provides OCaml language support for the tree-sitter parsing library. There are separate languages for implementations (.ml), interfaces (.mli) and types.

Installation

To use this crate, add it to the [dependencies] section of your Cargo.toml file. (Note that you will probably also need to depend on the tree-sitter crate to use the parsed result in any useful way.)

[dependencies]
tree-sitter = "0.24"
tree-sitter-ocaml = "0.24"

Usage

Typically, you will use LANGUAGE_OCAML to add this language to a tree-sitter Parser, and then use the parser to parse some code:

let code = r#"
    module M = struct
      let x = 0
    end
"#;
let mut parser = tree_sitter::Parser::new();
let language = tree_sitter_ocaml::LANGUAGE_OCAML;
parser
    .set_language(&language.into())
    .expect("Error loading OCaml language");
let tree = parser.parse(code, None).unwrap();

Use LANGUAGE_OCAML_INTERFACE to parse interface files (with .mli extension) and LANGUAGE_OCAML_TYPE to parse type signatures.

Dependencies