rez_lsp_server/parser/mod.rs
1//! Package parsing implementation for Rez.
2
3// TODO: Implement proper Python AST parsing for package.py files
4
5use crate::core::{Package, Result};
6use std::path::Path;
7
8/// Parse a package.py file.
9pub async fn parse_package_file(_path: &Path) -> Result<Package> {
10 todo!("Implement package parsing")
11}
12
13/// Parse package content from string.
14pub async fn parse_package_content(_content: &str, _base_path: &Path) -> Result<Package> {
15 todo!("Implement package content parsing")
16}