herolib-code 0.3.1

Code analysis and parsing utilities for Rust source files
Documentation
[package]
name = "herolib-code"
version.workspace = true
edition = "2024"
authors = ["PlanetFirst <info@incubaid.com>"]
repository = "https://github.com/threefoldtech/sal"
license = "Apache-2.0"
description = "Code analysis and parsing utilities for Rust source files"
keywords = ["rust", "parser", "code-analysis", "ast"]
categories = ["development-tools", "parsing"]
rust-version = "1.92.0"

[dependencies]
# AI analysis support
herolib-ai = "0.1"

# Rust source parsing
syn = { version = "2.0", features = ["full", "parsing", "extra-traits", "visit"] }
proc-macro2 = { version = "1.0", features = ["span-locations"] }
quote = "1.0"

# Error handling
thiserror = "2.0.12"
anyhow = "1.0.98"

# Serialization
serde = { version = "1.0", features = ["derive"] }
serde_json = "1.0"

# File system walking
walkdir = "2.5"

[features]
default = []

[dev-dependencies]
tempfile = "3.5"