-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathCargo.toml
47 lines (40 loc) · 1.16 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
[package]
name = "bmrng"
description = "async MPSC request-response channel for Tokio"
version = "0.5.3-alpha.0"
authors = ["Oguz Bilgener <[email protected]>"]
repository = "https://github.com/oguzbilgener/bmrng"
documentation = "https://docs.rs/bmrng"
keywords = ["tokio", "mpsc", "request", "async"]
categories = ["concurrency", "asynchronous"]
edition = "2018"
license = "MIT OR Apache-2.0"
include = [
"CHANGELOG.md",
"LICENSE",
"README.md",
".gitignore",
"Cargo.toml",
"src/*.rs",
"src/*/*.rs",
"tests/*.rs",
"benches/**/*.rs"
]
[badges]
maintenance = { status = "actively-developed" }
[dependencies]
tokio = { version = "1", features = ["sync", "time"] }
futures-core = { version = "0.3", default-features = false }
[dev-dependencies]
futures-util = { version = "0.3", default-features = false }
tokio = { version = "1", features = ["test-util", "rt", "rt-multi-thread", "macros"] }
loom = { version = "0.5", features = ["futures", "checkpoint"] }
criterion = { version = "0.3", features = ["async_tokio", "html_reports"] }
[[test]]
name = "tests"
[[bench]]
name = "bench_channel_async"
harness = false
[[bench]]
name = "bench_channel_sync"
harness = false