forked from rust-lang/futures-rs
-
Notifications
You must be signed in to change notification settings - Fork 1
/
Cargo.toml
30 lines (26 loc) · 827 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 = "futures"
version = "0.1.10"
authors = ["Alex Crichton <alex@alexcrichton.com>"]
license = "MIT/Apache-2.0"
readme = "README.md"
keywords = ["futures", "async", "future"]
repository = "https://github.com/alexcrichton/futures-rs"
homepage = "https://github.com/alexcrichton/futures-rs"
documentation = "https://docs.rs/futures"
description = """
An implementation of futures and streams featuring zero allocations,
composability, and iterator-like interfaces.
"""
categories = ["asynchronous"]
[badges]
travis-ci = { repository = "alexcrichton/futures-rs" }
appveyor = { repository = "alexcrichton/futures-rs" }
[dependencies]
log = { version = "0.3", default-features = false }
[features]
use_std = []
with-deprecated = []
default = ["use_std", "with-deprecated"]
[workspace]
members = ["futures-cpupool"]