1
0
mirror of https://github.com/fafhrd91/actix-net synced 2025-01-19 07:14:41 +01:00

25 lines
746 B
TOML
Raw Normal View History

2018-12-09 09:56:23 -08:00
[package]
name = "actix-service"
2021-12-18 03:26:59 +00:00
version = "2.0.2"
2020-12-28 01:58:31 +00: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 04:20:37 +01:00
categories = ["network-programming", "asynchronous", "no-std"]
repository = "https://github.com/actix/actix-net"
license = "MIT OR Apache-2.0"
2023-07-17 03:05:39 +01:00
edition.workspace = true
rust-version.workspace = true
2018-12-09 09:56:23 -08:00
[dependencies]
2022-12-21 20:36:26 +00:00
futures-core = { version = "0.3.17", 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]
2022-10-21 03:15:48 +01:00
actix-rt = "2"
actix-utils = "3"
2022-12-21 20:36:26 +00:00
futures-util = { version = "0.3.17", default-features = false }