2018-12-09 18:56:23 +01:00
|
|
|
[package]
|
|
|
|
name = "actix-service"
|
2019-12-11 05:29:34 +01:00
|
|
|
version = "1.0.0"
|
2018-12-09 18:56:23 +01:00
|
|
|
authors = ["Nikolay Kim <fafhrd91@gmail.com>"]
|
2019-12-10 16:11:39 +01:00
|
|
|
description = "Actix service"
|
2018-12-09 18:56:23 +01:00
|
|
|
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"
|
2019-03-02 23:22:03 +01:00
|
|
|
workspace = ".."
|
2018-12-09 18:56:23 +01:00
|
|
|
|
|
|
|
[badges]
|
|
|
|
travis-ci = { repository = "actix/actix-service", branch = "master" }
|
2019-02-02 04:53:13 +01:00
|
|
|
appveyor = { repository = "actix/actix-net" }
|
2018-12-09 18:56:23 +01:00
|
|
|
codecov = { repository = "actix/actix-service", branch = "master", service = "github" }
|
|
|
|
|
|
|
|
[lib]
|
|
|
|
name = "actix_service"
|
|
|
|
path = "src/lib.rs"
|
|
|
|
|
|
|
|
[dependencies]
|
2019-12-05 07:37:26 +01:00
|
|
|
futures-util = "0.3.1"
|
|
|
|
pin-project = "0.4.6"
|
2019-03-05 16:35:26 +01:00
|
|
|
|
|
|
|
[dev-dependencies]
|
2019-12-08 14:49:35 +01:00
|
|
|
actix-rt = "1.0.0-alpha.3"
|