-
Notifications
You must be signed in to change notification settings - Fork 39
/
Cargo.toml
45 lines (39 loc) · 1 KB
/
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
38
39
40
41
42
43
44
45
[package]
name = "generator"
version = "0.8.4"
edition = "2021"
rust-version = "1.73"
authors = ["Xudong Huang <[email protected]>"]
license = "MIT/Apache-2.0"
repository = "https://github.com/Xudong-Huang/generator-rs.git"
homepage = "https://github.com/Xudong-Huang/generator-rs.git"
documentation = "https://docs.rs/generator"
description = "Stackfull Generator Library in Rust"
readme = "README.md"
keywords = ["generator", "coroutine", "green", "thread", "fiber"]
categories = ["data-structures", "algorithms"]
exclude = [
".gitignore",
".travis.yml",
"appveyor.yml",
"benches/**/*",
]
[target.'cfg(windows)'.dependencies.windows]
version = "0.58"
features = [
"Win32_System_Memory",
"Win32_System_Kernel",
"Win32_Foundation",
"Win32_System_SystemInformation",
"Win32_System_Diagnostics_Debug"
]
[target.'cfg(unix)'.dependencies]
libc = "0.2.100"
[dependencies]
log = "0.4"
cfg-if = "1.0.0"
[build-dependencies]
rustversion = "1.0"
# release build
[profile.release]
lto = true