2018-12-09 09:56:23 -08:00
|
|
|
[package]
|
|
|
|
name = "actix-service"
|
2019-03-04 20:29:35 -08:00
|
|
|
version = "0.3.2"
|
2018-12-09 09:56:23 -08:00
|
|
|
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"
|
|
|
|
exclude = [".gitignore", ".travis.yml", ".cargo/config", "appveyor.yml"]
|
|
|
|
edition = "2018"
|
2019-03-02 14:22:03 -08:00
|
|
|
workspace = ".."
|
2018-12-09 09:56:23 -08:00
|
|
|
|
|
|
|
[badges]
|
|
|
|
travis-ci = { repository = "actix/actix-service", branch = "master" }
|
2019-02-01 19:53:13 -08:00
|
|
|
appveyor = { repository = "actix/actix-net" }
|
2018-12-09 09:56:23 -08:00
|
|
|
codecov = { repository = "actix/actix-service", branch = "master", service = "github" }
|
|
|
|
|
|
|
|
[lib]
|
|
|
|
name = "actix_service"
|
|
|
|
path = "src/lib.rs"
|
|
|
|
|
|
|
|
[dependencies]
|
|
|
|
futures = "0.1.24"
|
2019-03-02 13:18:01 -08:00
|
|
|
void = "1.0.2"
|
2019-03-05 07:35:26 -08:00
|
|
|
|
|
|
|
[dev-dependencies]
|
|
|
|
actix-rt = "0.1"
|