forked from fereidani/rust-channel-benchmarks
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathCargo.toml
65 lines (53 loc) · 1015 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
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
[package]
name = "benchmarks"
version = "0.1.0"
edition = "2018"
[dependencies]
async-channel = "1.7"
crossbeam = "0.8"
crossbeam-channel = "0.5"
flume = "0.10"
futures = { version = "0.3", features = ["thread-pool"] }
tokio = { version = "1", features = ["rt-multi-thread", "macros"] }
kanal = "0.1.0-pre1"
[profile.release]
opt-level = 3
rustc-env = {target-cpus = "native", tune-cpu = "native"}
debug = false
overflow-checks = false
lto = 'thin'
panic = 'abort'
codegen-units = 1
rpath = false
[[bin]]
name = "crossbeam-channel"
path = "crossbeam-channel.rs"
doc = false
[[bin]]
name = "kanal"
path = "kanal.rs"
doc = false
[[bin]]
name = "kanal-async"
path = "kanal-async.rs"
doc = false
[[bin]]
name = "flume"
path = "flume.rs"
doc = false
[[bin]]
name = "flume-async"
path = "flume-async.rs"
doc = false
[[bin]]
name = "futures-channel"
path = "futures-channel.rs"
doc = false
[[bin]]
name = "mpsc"
path = "mpsc.rs"
doc = false
[[bin]]
name = "async-channel"
path = "async-channel.rs"
doc = false