-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathCargo.toml
24 lines (22 loc) · 819 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
[package]
name = "tokio-fastcgi"
description = "FastCGI handler (responder, authorizer, filter) library for Tokio"
license = "Apache-2.0"
keywords = [ "protocol", "fastcgi", "web", "tokio", "async" ]
categories = [ "web-programming", "network-programming", "asynchronous" ]
version = "1.2.0"
authors = ["Daniel Goß <developer@flashsystems.de>"]
edition = "2021"
homepage = "https://github.com/FlashSystems/tokio-fastcgi"
repository = "https://github.com/FlashSystems/tokio-fastcgi"
readme = "README.md"
exclude = [ "*.code-workspace", ".vscode" ]
[dependencies]
tokio = { version = "1", features = ["rt", "io-util", "macros", "sync"] }
log = "0.4"
byteorder = "1"
[dev-dependencies]
tokio = { version = "1", features = ["test-util", "net", "rt-multi-thread"] }
tokio-test = "0.4"
async-trait = "0.1"
once_cell = "1"