1
0
mirror of https://github.com/actix/actix-extras.git synced 2025-02-20 09:40:34 +01:00
actix-extras/Cargo.toml

40 lines
830 B
TOML
Raw Normal View History

2018-03-13 22:13:21 +08:00
[package]
name = "actix-protobuf"
2018-04-10 12:40:11 -07:00
version = "0.2.0"
2018-03-13 22:13:21 +08:00
authors = ["kingxsp <jin.hb.zh@outlook.com>"]
2018-03-21 15:49:58 -07: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 22:13:21 +08:00
[lib]
name = "actix_protobuf"
path = "src/lib.rs"
[dependencies]
bytes = "0.4"
futures = "0.1"
failure = "0.1"
2018-03-21 15:58:37 -07:00
actix = "0.5"
2018-04-10 12:40:11 -07:00
actix-web = "0.5"
2018-03-13 22:13:21 +08:00
2018-03-21 15:58:37 -07:00
prost = "0.2"
2018-03-13 22:13:21 +08:00
[dev-dependencies]
http = "^0.1.5"
prost-derive = "^0.2"
[workspace]
members = [
"./",
"examples/prost-example",
2018-03-21 15:43:32 -07:00
]