[package]
edition = "2021"
name = "psm"
version = "0.1.29"
authors = ["Simonas Kazlauskas <psm@kazlauskas.me>"]
build = "build.rs"
autolib = false
autobins = false
autoexamples = false
autotests = false
autobenches = false
description = "Portable Stack Manipulation: stack manipulation and introspection routines"
documentation = "https://docs.rs/psm/0.1.25"
readme = "README.mkd"
keywords = [
"stack",
"no_std",
]
license = "MIT OR Apache-2.0"
repository = "https://github.com/rust-lang/stacker/"
[lib]
name = "psm"
path = "src/lib.rs"
[[example]]
name = "info"
path = "examples/info.rs"
[[example]]
name = "on_stack_fibo"
path = "examples/on_stack_fibo.rs"
[[example]]
name = "on_stack_fibo_alloc_each_frame"
path = "examples/on_stack_fibo_alloc_each_frame.rs"
[[example]]
name = "panics"
path = "examples/panics.rs"
[[example]]
name = "replace_stack_1"
path = "examples/replace_stack_1.rs"
[[example]]
name = "thread"
path = "examples/thread.rs"
[[test]]
name = "stack_direction"
path = "tests/stack_direction.rs"
[[test]]
name = "stack_direction_2"
path = "tests/stack_direction_2.rs"
[dependencies]
[build-dependencies.ar_archive_writer]
version = "0.5.0"
[build-dependencies.cc]
version = "1.2.33"