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