fn-ptr 0.9.3

A utility crate for introspecting and rewriting function pointer types at compile time.
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 = "fn-ptr"
version = "0.9.3"
authors = ["OpenByte <development.openbyte@gmail.com>"]
build = "build.rs"
autolib = false
autobins = false
autoexamples = false
autotests = false
autobenches = false
description = "A utility crate for introspecting and rewriting function pointer types at compile time."
documentation = "https://docs.rs/fn-ptr"
readme = "README.md"
keywords = [
    "fn",
    "function",
    "fn_traits",
]
categories = [
    "no-std",
    "no-std::no-alloc",
    "rust-patterns",
]
license = "MIT"
repository = "https://github.com/OpenByteDev/fn-ptr"

[features]
abi_vectorcall = ["nightly"]
default = []
max-arity-12 = []
nightly = []
stable = []

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

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

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

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

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

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

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

[dependencies.cfg-tt]
version = "0.4"

[dependencies.ffi-opaque]
version = "2.0"

[dependencies.konst]
version = "0.4"
features = ["cmp"]
default-features = false

[dev-dependencies.static_assertions]
version = "1.1"

[build-dependencies.build-target]
version = "0.8"

[build-dependencies.cargo-emit]
version = "0.2"

[build-dependencies.rustc_version]
version = "0.4"

[lints.rust.unexpected_cfgs]
level = "warn"
priority = 0
check-cfg = [
    "cfg(nightly_build)",
    "cfg(has_abi_cdecl)",
    "cfg(has_abi_stdcall)",
    "cfg(has_abi_fastcall)",
    "cfg(has_abi_thiscall)",
    "cfg(has_abi_vectorcall)",
    "cfg(has_abi_win64)",
    "cfg(has_abi_sysv64)",
    "cfg(has_abi_aapcs)",
    "cfg(has_abi_efiapi)",
]