forked from PrismaPhonic/tokio-context
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathCargo.toml
More file actions
26 lines (23 loc) · 780 Bytes
/
Copy pathCargo.toml
File metadata and controls
26 lines (23 loc) · 780 Bytes
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
[package]
name = "tokio-context"
version = "0.1.3"
authors = ["Peter Farr <Peter@PrismaPhonic.com>"]
description = "Contexts for cancelling asynchronous tasks using tokio"
keywords = ["async", "api", "tokio", "futures"]
categories = ["rust-patterns", "development-tools", "asynchronous"]
repository = "https://github.com/PrismaPhonic/tokio-context"
documentation = "https://docs.rs/tokio-context"
readme = "README.md"
license = "MIT"
edition = "2021"
include = [
"**/*.rs",
"Cargo.toml",
"README.md",
]
[badges]
maintenance = { status = "actively-developed" }
[dependencies]
tokio = { version = "1.28.2", features = ["macros", "sync", "time", "rt"] }
[dev-dependencies]
tokio = { version = "1.28.2", features = ["macros", "sync", "time", "rt", "rt-multi-thread"] }