xll-utils 0.1.0

PE/COFF parsing and export verification utilities for Excel XLL development
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 = "2021"
name = "xll-utils"
version = "0.1.0"
build = false
autolib = false
autobins = false
autoexamples = false
autotests = false
autobenches = false
description = "PE/COFF parsing and export verification utilities for Excel XLL development"
readme = "README.md"
keywords = [
    "excel",
    "xll",
    "dll",
    "exports",
    "pe",
]
categories = [
    "development-tools::ffi",
    "parser-implementations",
]
license = "MIT OR Apache-2.0"
repository = "https://github.com/jesse-anderson/xll-utils"

[features]
build = []
cli = [
    "dep:clap",
    "dep:anyhow",
]
default = []
serde = [
    "dep:serde",
    "dep:serde_json",
]

[lib]
name = "xll_utils"
path = "src/lib.rs"

[[bin]]
name = "xllutils"
path = "src/main.rs"
required-features = ["cli"]

[[example]]
name = "verify_exports"
path = "examples/verify_exports.rs"

[[example]]
name = "xll_info"
path = "examples/xll_info.rs"

[[test]]
name = "build_tests"
path = "tests/build_tests.rs"

[[test]]
name = "exports_tests"
path = "tests/exports_tests.rs"

[[test]]
name = "integration_tests"
path = "tests/integration_tests.rs"

[[test]]
name = "pe_tests"
path = "tests/pe_tests.rs"

[[test]]
name = "types_tests"
path = "tests/types_tests.rs"

[[test]]
name = "xll_tests"
path = "tests/xll_tests.rs"

[dependencies.anyhow]
version = "1.0"
optional = true

[dependencies.clap]
version = "4.5"
features = ["derive"]
optional = true

[dependencies.object]
version = "0.36"
features = [
    "pe",
    "read_core",
]
default-features = false

[dependencies.serde]
version = "1.0"
features = ["derive"]
optional = true

[dependencies.serde_json]
version = "1.0"
optional = true

[dependencies.thiserror]
version = "2.0"

[target."cfg(windows)".dependencies.windows]
version = "0.58"
features = [
    "Win32_Foundation",
    "Win32_System_Registry",
    "Win32_System_Memory",
]