[package]
edition = "2024"
name = "jmp-scape"
version = "0.1.1"
build = "build.rs"
autolib = false
autobins = false
autoexamples = false
autotests = false
autobenches = false
description = "Safe Rust access to setjmp and sigsetjmp, forked from cee-scape."
homepage = "https://github.com/gagan405/jmp-scape"
documentation = "https://docs.rs/jmp-scape/"
readme = "README.md"
keywords = [
"setjmp",
"longjmp",
"ffi",
"c",
"signal",
]
categories = [
"external-ffi-bindings",
"no-std",
]
license = "MIT OR Apache-2.0"
repository = "https://github.com/gagan405/jmp-scape"
[features]
default = ["test_c_integration"]
test_c_integration = []
use_c_to_interface_with_setjmp = []
[lib]
name = "jmp_scape"
path = "src/lib.rs"
[dependencies.libc]
version = "0.2"
default-features = false
[dev-dependencies.expect-test]
version = "1.5"
[build-dependencies.cc]
version = "1.2"