[package]
edition = "2024"
rust-version = "1.85"
name = "unity-assetdb"
version = "0.2.0"
build = false
exclude = [
"target/",
".github/",
]
autolib = false
autobins = false
autoexamples = false
autotests = false
autobenches = false
description = "Unity asset GUID → name index baker. Walks Assets/, parses .meta and asset YAML, writes a compact bincode database."
homepage = "https://github.com/studio-boxcat/unity-assetdb"
documentation = "https://docs.rs/unity-assetdb"
readme = "README.md"
keywords = [
"unity",
"asset",
"yaml",
"gamedev",
"tooling",
]
categories = [
"game-development",
"parser-implementations",
"command-line-utilities",
]
license = "MIT OR Apache-2.0"
repository = "https://github.com/studio-boxcat/unity-assetdb"
[features]
cli = ["dep:clap"]
default = ["cli"]
[lib]
name = "unity_assetdb"
path = "src/lib.rs"
[[bin]]
name = "unity-assetdb"
path = "src/bin/unity-assetdb.rs"
required-features = ["cli"]
[[test]]
name = "bake"
path = "tests/bake.rs"
[dependencies.ahash]
version = "0.8"
[dependencies.anyhow]
version = "1"
[dependencies.bincode]
version = "2"
[dependencies.clap]
version = "4"
features = ["derive"]
optional = true
[dependencies.ignore]
version = "0.4"
[dependencies.thiserror]
version = "2"
[dev-dependencies.filetime]
version = "0.2"