lux-lib 0.39.0

Library for the lux package manager for Lua
Documentation
use std::{collections::HashMap, path::PathBuf};

#[derive(Debug, PartialEq, Default, Clone)]
pub struct TreesitterParserBuildSpec {
    /// Name of the parser language, e.g. "haskell"
    pub lang: String,

    /// Won't build the parser if `false`
    /// (useful for packages that only include queries)
    pub parser: bool,

    /// Must the sources be generated?
    pub generate: bool,

    /// tree-sitter grammar's location (relative to the source root)
    pub location: Option<PathBuf>,

    /// Embedded queries to be installed in the `etc/queries` directory
    pub queries: HashMap<PathBuf, String>,
}