├── .gitignore ├── Cargo.toml ├── README.md ├── alloca_trampoline_.c └── src ├── avec.rs ├── ffi.rs ├── lib.rs └── tests.rs /.gitignore: -------------------------------------------------------------------------------- 1 | /target 2 | Cargo.lock 3 | -------------------------------------------------------------------------------- /Cargo.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/notflan/stackalloc-rs/HEAD/Cargo.toml -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/notflan/stackalloc-rs/HEAD/README.md -------------------------------------------------------------------------------- /alloca_trampoline_.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/notflan/stackalloc-rs/HEAD/alloca_trampoline_.c -------------------------------------------------------------------------------- /src/avec.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/notflan/stackalloc-rs/HEAD/src/avec.rs -------------------------------------------------------------------------------- /src/ffi.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/notflan/stackalloc-rs/HEAD/src/ffi.rs -------------------------------------------------------------------------------- /src/lib.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/notflan/stackalloc-rs/HEAD/src/lib.rs -------------------------------------------------------------------------------- /src/tests.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/notflan/stackalloc-rs/HEAD/src/tests.rs --------------------------------------------------------------------------------