microseh 1.2.0

Structured Exception Handling (SEH) for Rust
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 = "microseh"
version = "1.2.0"
authors = ["sonodima"]
build = "build.rs"
autolib = false
autobins = false
autoexamples = false
autotests = false
autobenches = false
description = "Structured Exception Handling (SEH) for Rust"
homepage = "https://github.com/sonodima/microseh"
readme = "README.md"
keywords = [
    "seh",
    "windows",
    "hardware",
    "exception",
    "handler",
]
categories = ["os"]
license = "MIT"
repository = "https://github.com/sonodima/microseh"

[package.metadata.docs.rs]
default-target = "x86_64-pc-windows-msvc"
rustc-args = [
    "--cfg",
    "docsrs",
]
rustdoc-args = [
    "--cfg",
    "docsrs",
]
targets = [
    "i686-pc-windows-msvc",
    "x86_64-pc-windows-msvc",
    "aarch64-pc-windows-msvc",
]

[features]
default = ["std"]
std = []

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

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

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

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

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

[build-dependencies.cc]
version = "1.1"