forked from cogciprocate/qutex
-
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Cargo.toml
31 lines (27 loc) · 860 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
[package]
name = "qutex"
version = "0.2.3"
authors = ["Nick Sanders <[email protected]>"]
license = "MIT"
description = """\
Synchronization mechanisms that rely on lock-free and other \
non-(thread)blocking techniques, such as Rust futures, to guarantee \
mutually exclusive or shared exclusive access to data."""
documentation = "https://docs.rs/qutex"
homepage = "https://github.com/cogciprocate/qutex"
repository = "https://github.com/cogciprocate/qutex"
readme = "README.md"
keywords = ["futures", "async", "data-structures", "mutex", "lock"]
categories = ["asynchronous", "concurrency", "data-structures"]
edition = "2018"
[features]
default = []
async_await = ["futures03"]
[dependencies]
crossbeam = "0.7"
futures = "0.1"
[dependencies.futures03]
package = "futures-preview"
version = "0.3.0-alpha.14"
features = ["compat"]
optional = true