[package]
edition = "2024"
rust-version = "1.95"
name = "lihaaf"
version = "0.1.2"
authors = ["Tarunvir Bains"]
build = false
exclude = ["tests/integration_corpus/"]
publish = true
autolib = false
autobins = false
autoexamples = false
autotests = false
autobenches = false
description = "Fast compile-fail and compile-pass test harness for Rust proc macros; a faster trybuild-style workflow"
homepage = "https://github.com/TarunvirBains/lihaaf"
documentation = "https://docs.rs/lihaaf"
readme = "README.md"
keywords = [
"trybuild",
"proc-macro",
"compile-fail",
"testing",
"rustc",
]
categories = [
"development-tools::testing",
"development-tools::procedural-macro-helpers",
]
license = "MIT OR Apache-2.0"
repository = "https://github.com/TarunvirBains/lihaaf"
[package.metadata.lihaaf]
dylib_crate = "lihaaf"
extern_crates = ["lihaaf"]
edition = "2024"
[[package.metadata.lihaaf.suite]]
name = "suite_demo"
features = ["suite_demo"]
fixture_dirs = ["tests/lihaaf/compile_pass_suite_demo"]
[features]
suite_demo = []
[lib]
name = "lihaaf"
path = "src/lib.rs"
[[bin]]
name = "cargo-lihaaf"
path = "src/bin/cargo-lihaaf.rs"
[[test]]
name = "argv_baseline_no_shell"
path = "tests/compat/argv_baseline_no_shell.rs"
[[test]]
name = "baseline_conservative"
path = "tests/compat/baseline_conservative.rs"
[[test]]
name = "cleanup_dirty_worktree"
path = "tests/compat/cleanup_dirty_worktree.rs"
[[test]]
name = "cli_mode_errors"
path = "tests/compat/cli_mode_errors.rs"
[[test]]
name = "discovery_syn"
path = "tests/compat/discovery_syn.rs"
[[test]]
name = "gate_smoke"
path = "tests/compat/gate_smoke.rs"
[[test]]
name = "lihaaf_allow_lints"
path = "tests/lihaaf_allow_lints.rs"
[[test]]
name = "lihaaf_fixture_shape"
path = "tests/lihaaf_fixture_shape.rs"
[[test]]
name = "normalizer_compat_cargo"
path = "tests/compat/normalizer_compat_cargo.rs"
[[test]]
name = "overlay_determinism"
path = "tests/compat/overlay_determinism.rs"
[[test]]
name = "report_determinism"
path = "tests/compat/report_determinism.rs"
[[test]]
name = "toolchain_resolution"
path = "tests/compat/toolchain_resolution.rs"
[dependencies.clap]
version = "4"
features = ["derive"]
[dependencies.proc-macro2]
version = "1"
features = ["span-locations"]
[dependencies.serde]
version = "1"
features = ["derive"]
[dependencies.serde_json]
version = "1"
features = ["preserve_order"]
[dependencies.sha2]
version = "0.11"
[dependencies.syn]
version = "2"
features = [
"full",
"visit",
"parsing",
]
[dependencies.tempfile]
version = "3"
[dependencies.toml]
version = "1"
[target."cfg(unix)".dependencies.libc]
version = "0.2"
[target."cfg(windows)".dependencies.windows-sys]
version = "0.59"
features = [
"Win32_Storage_FileSystem",
"Win32_System_IO",
"Win32_Foundation",
"Win32_System_Threading",
"Win32_System_ProcessStatus",
]