-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathCargo.toml
49 lines (42 loc) · 1.45 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
46
47
48
49
[package]
name = "minits"
version = "0.1.0"
authors = ["N/A <N/A>"]
edition = "2018"
[lib]
name = "minits"
[features]
default = []
fibers = ["minifiber"]
logging = ["log"]
task_names = []
profiling = []
remotery = ["miniremotery"]
asyncio = ["miniiocp"]
graph = ["minigraph"]
[dependencies]
log = { version = "0.4", optional = true }
miniclosure = { path = "../miniclosure" }
minifiber = { path = "../minifiber", optional = true }
minithreadlocal = { path = "../minithreadlocal" }
miniremotery = { path = "../miniremotery", optional = true }
miniiocp = { path = "../miniiocp", optional = true }
minigraph = { path = "../minigraph", optional = true }
[target.'cfg(windows)'.dependencies]
winapi = { version = "0.3", features = [ "std"
,"impl-default"
,"minwindef"
,"winbase"
,"synchapi"
,"winerror"
,"handleapi"
,"fibersapi"
,"processthreadsapi"
,"errhandlingapi"
,"sysinfoapi"
,"ioapiset"] }
[dev-dependencies]
env_logger = "0.6"
[[example]]
name = "task_graph"
required-features = ["graph"]