[package]
edition = "2021"
rust-version = "1.63"
name = "stacker"
version = "0.1.23"
authors = [
"Alex Crichton <alex@alexcrichton.com>",
"Simonas Kazlauskas <stacker@kazlauskas.me>",
]
build = "build.rs"
autolib = false
autobins = false
autoexamples = false
autotests = false
autobenches = false
description = """
A stack growth library useful when implementing deeply recursive algorithms that
may accidentally blow the stack.
"""
homepage = "https://github.com/rust-lang/stacker"
documentation = "https://docs.rs/stacker/0.1.23"
readme = "README.md"
license = "MIT OR Apache-2.0"
repository = "https://github.com/rust-lang/stacker"
[lib]
name = "stacker"
path = "src/lib.rs"
test = false
doctest = false
[[test]]
name = "simple"
path = "tests/simple.rs"
[[test]]
name = "smoke"
path = "tests/smoke.rs"
[dependencies.cfg-if]
version = "1.0.0"
[dependencies.libc]
version = "0.2.156"
[dependencies.psm]
version = "0.1.7"
[build-dependencies.cc]
version = "1.2.33"
[target.arm64ec-pc-windows-msvc.dependencies.windows-sys]
version = ">=0.59.0, <0.60.0"
features = [
"Win32_System_Memory",
"Win32_System_Threading",
"Win32_Foundation",
]
[target.'cfg(all(windows, not(target_arch = "arm64ec")))'.dependencies.windows-sys]
version = ">=0.52.0, <0.60.0"
features = [
"Win32_System_Memory",
"Win32_System_Threading",
"Win32_Foundation",
]