forked from tower-rs/tower
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathCargo.toml
43 lines (37 loc) · 845 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
32
33
34
35
36
37
38
39
40
41
42
43
[package]
name = "tower"
version = "0.1.0"
license = "MIT"
authors = ["Carl Lerche <[email protected]>"]
description = """
An extensible request / response system, used to construct high-concurrency
servers and clients.
"""
documentation = "https://docs.rs/tower"
homepage = "https://github.com/tower-rs/tower"
repository = "https://github.com/tower-rs/tower"
readme = "README.md"
publish = false
[workspace]
members = [
"./",
"tower-balance",
"tower-buffer",
"tower-discover",
"tower-filter",
"tower-in-flight-limit",
"tower-mock",
"tower-rate-limit",
"tower-ready-service",
"tower-reconnect",
"tower-router",
"tower-timeout",
"tower-util",
]
[dependencies]
futures = "0.1"
[dev-dependencies]
log = "0.4.1"
env_logger = { version = "0.5.3", default-features = false }
tokio-timer = "0.1"
futures-cpupool = "0.1"