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