mirror of
https://github.com/fafhrd91/actix-net
synced 2024-11-24 00:01:11 +01:00
9528df4486
pin-project will deprecate the project attribute due to some unfixable limitations. Refs: https://github.com/taiki-e/pin-project/issues/225
33 lines
686 B
TOML
33 lines
686 B
TOML
[package]
|
|
name = "actix-service"
|
|
version = "1.0.5"
|
|
authors = ["Nikolay Kim <fafhrd91@gmail.com>"]
|
|
description = "Actix service"
|
|
keywords = ["network", "framework", "async", "futures"]
|
|
homepage = "https://actix.rs"
|
|
repository = "https://github.com/actix/actix-net.git"
|
|
documentation = "https://docs.rs/actix-service/"
|
|
categories = ["network-programming", "asynchronous"]
|
|
license = "MIT/Apache-2.0"
|
|
edition = "2018"
|
|
|
|
[lib]
|
|
name = "actix_service"
|
|
path = "src/lib.rs"
|
|
|
|
[dependencies]
|
|
futures-util = "0.3.1"
|
|
pin-project = "0.4.17"
|
|
|
|
[dev-dependencies]
|
|
actix-rt = "1.0.0"
|
|
criterion = "0.3"
|
|
|
|
[[bench]]
|
|
name = "unsafecell_vs_refcell"
|
|
harness = false
|
|
|
|
[[bench]]
|
|
name = "and_then"
|
|
harness = false
|