-
Notifications
You must be signed in to change notification settings - Fork 0
/
Cargo.toml
22 lines (19 loc) · 815 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
[package]
name = "kyansel"
version = "0.3.1"
authors = ["Francesco Dainese <franci.dainese@gmail.com>"]
edition = "2018"
license = "Apache-2.0/MIT"
keywords = ["futures", "task", "cancel", "abort", "no_std"]
documentation = "https://docs.rs/kyansel/0.3.1"
repository = "https://github.com/Karrq/kyansel"
homepage = "https://github.com/Karrq/kyansel"
description = "Cancellable future. Provide a future as argument and the current future will cancel if the provided future resolves first"
[dependencies]
futures_01 = { version = "0.1", optional = true, package = "futures", default-features = false }
[dev-dependencies]
tokio = { version = "0.2.0-alpha.6", features = ["sync"] }
futures = "0.3"
tokio_01 = { version = "0.1", features = ["sync"], package = "tokio" }
[package.metadata.docs.rs]
all-features = true