-
Notifications
You must be signed in to change notification settings - Fork 0
/
Cargo.toml
31 lines (29 loc) · 838 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
[package]
name = "cancellable"
version = "0.3.1"
authors = ["Kamil Rusin <[email protected]>"]
edition = "2021"
description = "A Rust library providing a generic cancellable utility."
readme = "README.md"
homepage = "https://github.com/nathiss/cancellable"
repository = "https://github.com/nathiss/cancellable"
license = "MIT"
keywords = ["tokio", "service", "cancellable"]
categories = ["asynchronous"]
include = ["/src", "LICENSE.txt"]
[dependencies]
async-trait = "0.1.71"
pin-project = "1.1.2"
tokio = { version = "1.29.1", default-features = false, features = [
"rt",
"macros",
] }
tokio-util = { version = "0.7.8", default-features = false }
[dev-dependencies]
anyhow = "1.0.71"
tokio = { version = "1.29.1", default-features = false, features = [
"rt-multi-thread",
"net",
"macros",
"time",
] }