23 lines
528 B
TOML
23 lines
528 B
TOML
[package]
|
|
name = "unity-parser"
|
|
version = "0.1.0"
|
|
edition = "2021"
|
|
description = "A library for parsing Unity project YAML files"
|
|
license = "MIT"
|
|
|
|
[lib]
|
|
name = "unity_parser"
|
|
path = "src/lib.rs"
|
|
|
|
[dependencies]
|
|
serde.workspace = true
|
|
serde_yaml.workspace = true
|
|
serde_json.workspace = true
|
|
anyhow.workspace = true
|
|
glam.workspace = true
|
|
sparsey.workspace = true
|
|
walkdir.workspace = true
|
|
rayon.workspace = true
|
|
thiserror.workspace = true
|
|
|
|
# unity-project-derive = { path = "../unity-project-derive" } # Will be created in Phase 7 |