-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathCargo.toml
35 lines (33 loc) · 868 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
[package]
name = "batch-aint-one"
version = "0.6.5"
edition = "2021"
authors = ["Thom Wright <[email protected]>"]
description = """
I got 99 problems, but a batch ain't one
"""
documentation = "https://docs.rs/batch-aint-one"
homepage = "https://github.com/ThomWright/batch-aint-one"
repository = "https://github.com/ThomWright/batch-aint-one"
readme = "README.md"
keywords = ["batching", "batch", "async", "concurrency"]
categories = ["concurrency"]
license = "MIT"
[dependencies]
async-trait = "0.1.74"
thiserror = "1.0.50"
tokio = { version = "1.33.0", features = [
"sync",
"time",
"tracing",
"rt",
"macros",
] }
tracing = "0.1.40"
[dev-dependencies]
doc-comment = "0.3.3"
futures = "0.3.29"
tokio = { version = "1.28.1", features = ["rt", "macros", "test-util"] }
tokio-test = "0.4.3"
tracing-capture = "0.2.0-beta.1"
tracing-subscriber = "0.3.18"