-
Notifications
You must be signed in to change notification settings - Fork 5
/
Copy pathCargo.toml
27 lines (24 loc) · 821 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
[package]
name = "future-parking_lot"
version = "0.3.3"
authors = ["Marco Napetti <marco.napetti@gmail.com>"]
edition = "2018"
description = "An \"as simple as possible\" Future implementation for parking_lot"
license = "Apache-2.0/MIT"
repository = "https://github.com/nappa85/future-parking_lot"
readme = "README.md"
keywords = ["mutex", "rwlock", "future", "futures", "async"]
categories = ["concurrency", "asynchronous"]
[dependencies]
lock_api = "0.4"
parking_lot = "0.11"
crossbeam-queue = "0.3"
pin-project-lite = "0.1.7"
[dev-dependencies]
parking_lot = { version = "0.11", features = ["send_guard"] }
lazy_static = "1.4"
tokio = { version = "0.2", features = ["rt-core", "rt-threaded"] }
log = "0.4"
env_logger = "0.7"
[patch.crates-io]
crossbeam-queue = { git = "https://github.com/crossbeam-rs/crossbeam" }