1
0
mirror of https://github.com/fafhrd91/actix-net synced 2024-11-24 00:01:11 +01:00
actix-net/actix-service/Cargo.toml

25 lines
746 B
TOML
Raw Normal View History

2018-12-09 18:56:23 +01:00
[package]
name = "actix-service"
2021-12-18 04:26:59 +01:00
version = "2.0.2"
2020-12-28 02:58:31 +01:00
authors = [
"Nikolay Kim <fafhrd91@gmail.com>",
"Rob Ede <robjtede@icloud.com>",
]
description = "Service trait and combinators for representing asynchronous request/response operations."
keywords = ["network", "framework", "async", "futures", "service"]
2021-10-11 05:20:37 +02:00
categories = ["network-programming", "asynchronous", "no-std"]
repository = "https://github.com/actix/actix-net"
license = "MIT OR Apache-2.0"
2023-07-17 04:05:39 +02:00
edition.workspace = true
rust-version.workspace = true
2018-12-09 18:56:23 +01:00
[dependencies]
2022-12-21 21:36:26 +01:00
futures-core = { version = "0.3.17", default-features = false }
2021-04-15 21:43:02 +02:00
paste = "1"
pin-project-lite = "0.2"
2019-03-05 16:35:26 +01:00
[dev-dependencies]
2022-10-21 04:15:48 +02:00
actix-rt = "2"
actix-utils = "3"
2022-12-21 21:36:26 +01:00
futures-util = { version = "0.3.17", default-features = false }