1
0
mirror of https://github.com/fafhrd91/actix-net synced 2025-01-19 09:34:40 +01:00

29 lines
800 B
TOML
Raw Normal View History

2018-12-09 09:56:23 -08:00
[package]
name = "actix-service"
2021-10-11 04:20:37 +01:00
version = "2.0.1"
2020-12-28 01:58:31 +00:00
authors = [
"Nikolay Kim <fafhrd91@gmail.com>",
"Rob Ede <robjtede@icloud.com>",
"fakeshadow <24548779@qq.com>",
2020-12-28 01:58:31 +00:00
]
description = "Service trait and combinators for representing asynchronous request/response operations."
keywords = ["network", "framework", "async", "futures", "service"]
2021-10-11 04:20:37 +01:00
categories = ["network-programming", "asynchronous", "no-std"]
repository = "https://github.com/actix/actix-net"
license = "MIT OR Apache-2.0"
2018-12-09 09:56:23 -08:00
edition = "2018"
[lib]
name = "actix_service"
path = "src/lib.rs"
[dependencies]
2020-12-27 14:15:42 +00:00
futures-core = { version = "0.3.7", default-features = false }
2021-04-15 20:43:02 +01:00
paste = "1"
pin-project-lite = "0.2"
2019-03-05 07:35:26 -08:00
[dev-dependencies]
2021-02-03 10:25:31 +00:00
actix-rt = "2.0.0"
actix-utils = "3.0.0"
futures-util = { version = "0.3.7", default-features = false }