[package]
edition = "2024"
name = "type-crawler"
version = "0.1.0"
authors = ["Aetias <aetias@outlook.com>"]
build = false
autolib = false
autobins = false
autoexamples = false
autotests = false
autobenches = false
description = "A tool to scan C/C++ types using libclang"
readme = "README.md"
license = "MIT"
repository = "https://github.com/AetiasHax/type-crawler"
resolver = "2"
[lib]
name = "type_crawler"
path = "src/lib.rs"
[[test]]
name = "test_class"
path = "tests/test_class.rs"
[[test]]
name = "test_enum"
path = "tests/test_enum.rs"
[[test]]
name = "test_playground"
path = "tests/test_playground.rs"
[[test]]
name = "test_struct"
path = "tests/test_struct.rs"
[[test]]
name = "test_typedef"
path = "tests/test_typedef.rs"
[[test]]
name = "test_union"
path = "tests/test_union.rs"
[dependencies.clang]
version = "2.0"
features = ["clang_9_0"]
[dependencies.indexmap]
version = "2.10"
[dependencies.snafu]
version = "0.8"