-
Notifications
You must be signed in to change notification settings - Fork 7
/
Copy pathCargo.toml
59 lines (48 loc) · 1.31 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
50
51
52
53
54
55
56
57
58
59
[package]
name = "rumpsteak"
version = "0.1.0"
authors = ["Zak Cutner <[email protected]>"]
edition = "2018"
description = "Session types for asynchronous communication between multiple parties."
readme = "README.md"
repository = "https://github.com/zakcutner/rumpsteak"
license = "MIT"
keywords = ["async", "deadlock", "safety", "session", "types"]
categories = ["asynchronous", "concurrency"]
[lib]
bench = false
[[bench]]
name = "double_buffering"
harness = false
[[bench]]
name = "ring"
harness = false
[[bench]]
name = "subtype"
harness = false
required-features = ["serialize"]
[[bench]]
name = "three_adder"
harness = false
[dependencies]
futures = "0.3"
rumpsteak-fsm = { path = "fsm", version = "0.1", optional = true }
rumpsteak-macros = { path = "macros", version = "0.1" }
thiserror = "1.0"
[dev-dependencies]
criterion = "0.3"
futures = { version = "0.3", features = ["thread-pool"] }
num-complex = "0.4"
rand = { version = "0.8" }
rumpsteak-fsm = { path = "fsm", features = ["subtyping"] }
rumpsteak-oneshot = { path = "oneshot" }
tempfile = "3.2"
tokio = { version = "1.6", features = ["macros", "rt", "time"] }
[features]
serialize = ["rumpsteak-fsm", "rumpsteak-macros/serialize"]
[profile.release]
debug = true
[profile.bench]
debug = true
[workspace]
members = ["caching", "fsm", "generate", "macros", "oneshot"]