type-crawler 0.1.0

A tool to scan C/C++ types using libclang
Documentation
# THIS FILE IS AUTOMATICALLY GENERATED BY CARGO
#
# When uploading crates to the registry Cargo will automatically
# "normalize" Cargo.toml files for maximal compatibility
# with all versions of Cargo and also rewrite `path` dependencies
# to registry (e.g., crates.io) dependencies.
#
# If you are reading this file be aware that the original Cargo.toml
# will likely look very different (and much more reasonable).
# See Cargo.toml.orig for the original contents.

[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"