-
Notifications
You must be signed in to change notification settings - Fork 3
/
Cargo.toml
38 lines (33 loc) · 892 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
[package]
name = "tourniquet"
version = "0.4.0"
authors = ["Tuetuopay <[email protected]>"]
license = "MIT"
readme = "README.md"
repository = "https://github.com/Tuetuopay/tourniquet"
description = "Async native round-robin manager for remote services"
categories = [
"algorithms",
"asynchronous",
"concurrency",
]
keywords = ["async", "round-robin"]
edition = "2021"
[workspace]
members = [
"tourniquet-celery",
"tourniquet-tonic",
]
[dependencies]
async-trait = "0.1"
log = "0.4"
tokio = { version = "1", features = ["sync"] }
tracing = { version = "0.1", optional = true }
tracing-futures = { version = "0.2", optional = true }
[dev-dependencies]
tokio = { version = "1", features = ["macros", "rt-multi-thread", "net", "io-util"] }
[features]
trace = ["tracing", "tracing-futures"]
[package.metadata.docs.rs]
all-features = true
rustdoc-args = ["--cfg", "docsrs"]