You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
25 lines
571 B
25 lines
571 B
[package]
|
|
name = "stackalloc"
|
|
version = "1.2.0"
|
|
homepage = "https://git.flanchan.moe/flanchan/stackalloc-rs"
|
|
repository = "https://github.com/notflan/stackalloc-rs"
|
|
keywords = ["alloca", "stack", "stack-allocation", "safe"]
|
|
description = "Safely allocate and manipulate arbitrarily-sized slices on the stack at runtime"
|
|
authors = ["Avril <flanchan@cumallover.me>"]
|
|
edition = "2018"
|
|
license = "MIT"
|
|
|
|
[dev-dependencies]
|
|
lazy_static = "1.4.0"
|
|
|
|
[build-dependencies]
|
|
cc = "1.0"
|
|
rustc_version = "0.2"
|
|
|
|
[features]
|
|
default = []
|
|
no_std = []
|
|
|
|
# for tests
|
|
no_unwind_protection = []
|