cruxlines 0.3.0

Ranks symbol definitions by cross-file references using tree-sitter.
Documentation
#[derive(Clone, Debug)]
pub enum Status {
    Active,
    Inactive,
}

pub struct User {
    pub name: String,
    pub status: Status,
}

impl User {
    pub fn new(name: &str, status: Status) -> Self {
        Self {
            name: name.to_string(),
            status,
        }
    }
}