1
0
mirror of https://github.com/actix/actix-extras.git synced 2024-11-24 07:53:00 +01:00
actix-extras/Cargo.toml

40 lines
830 B
TOML
Raw Normal View History

2018-03-13 15:13:21 +01:00
[package]
name = "actix-protobuf"
2018-04-10 21:40:11 +02:00
version = "0.2.0"
2018-03-13 15:13:21 +01:00
authors = ["kingxsp <jin.hb.zh@outlook.com>"]
2018-03-21 23:49:58 +01:00
description = "Protobuf support for actix-web framework."
readme = "README.md"
keywords = ["actix"]
homepage = "https://github.com/actix/actix-protobuf"
license = "MIT/Apache-2.0"
exclude = [".gitignore", ".travis.yml", ".cargo/config",
"appveyor.yml", "/examples/**"]
[badges]
travis-ci = { repository = "actix/actix-protobuf", branch = "master" }
codecov = { repository = "actix/actix-protobuf", branch = "master", service = "github" }
2018-03-13 15:13:21 +01:00
[lib]
name = "actix_protobuf"
path = "src/lib.rs"
[dependencies]
bytes = "0.4"
futures = "0.1"
failure = "0.1"
2018-03-21 23:58:37 +01:00
actix = "0.5"
2018-04-10 21:40:11 +02:00
actix-web = "0.5"
2018-03-13 15:13:21 +01:00
2018-03-21 23:58:37 +01:00
prost = "0.2"
2018-03-13 15:13:21 +01:00
[dev-dependencies]
http = "^0.1.5"
prost-derive = "^0.2"
[workspace]
members = [
"./",
"examples/prost-example",
2018-03-21 23:43:32 +01:00
]