phase 1
This commit is contained in:
39
Cargo.toml
Normal file
39
Cargo.toml
Normal file
@@ -0,0 +1,39 @@
|
||||
[package]
|
||||
name = "cursebreaker-parser"
|
||||
version = "0.1.0"
|
||||
edition = "2021"
|
||||
authors = ["Your Name <your.email@example.com>"]
|
||||
license = "MIT OR Apache-2.0"
|
||||
description = "A high-performance Rust library for parsing Unity project files (.unity, .prefab, .asset)"
|
||||
repository = "https://github.com/yourusername/cursebreaker-parser-rust"
|
||||
keywords = ["unity", "parser", "yaml", "gamedev"]
|
||||
categories = ["parser-implementations", "game-development"]
|
||||
rust-version = "1.70"
|
||||
|
||||
[lib]
|
||||
name = "cursebreaker_parser"
|
||||
path = "src/lib.rs"
|
||||
|
||||
[dependencies]
|
||||
# YAML parsing
|
||||
serde_yaml = "0.9"
|
||||
serde = { version = "1.0", features = ["derive"] }
|
||||
|
||||
# Error handling
|
||||
thiserror = "1.0"
|
||||
|
||||
# Ordered maps for properties
|
||||
indexmap = { version = "2.1", features = ["serde"] }
|
||||
|
||||
# Regex for parsing
|
||||
regex = "1.10"
|
||||
|
||||
[dev-dependencies]
|
||||
# Testing utilities
|
||||
pretty_assertions = "1.4"
|
||||
|
||||
[features]
|
||||
default = []
|
||||
|
||||
# Future: parallel processing support
|
||||
parallel = []
|
||||
Reference in New Issue
Block a user