forked from rust-lang/stacker
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathCargo.toml
37 lines (33 loc) · 800 Bytes
/
Cargo.toml
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
[package]
name = "stacker"
version = "0.1.9"
authors = ["Alex Crichton <[email protected]>", "Simonas Kazlauskas <[email protected]>"]
build = "build.rs"
license = "MIT/Apache-2.0"
readme = "README.md"
repository = "https://github.com/rust-lang/stacker"
homepage = "https://github.com/rust-lang/stacker"
documentation = "https://docs.rs/stacker/0.1.9"
description = """
A stack growth library useful when implementing deeply recursive algorithms that
may accidentally blow the stack.
"""
[lib]
name = "stacker"
doctest = false
test = false
[dependencies]
cfg-if = "0.1.6"
libc = "0.2.45"
psm = "0.1.7"
[target.'cfg(windows)'.dependencies.winapi]
version = "0.3.6"
features = [
'memoryapi',
'winbase',
'fibersapi',
'processthreadsapi',
'minwindef',
]
[build-dependencies]
cc = "1.0"