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
828 B
TOML
Raw Normal View History

2018-03-13 15:13:21 +01:00
[package]
name = "actix-protobuf"
2019-03-07 07:19:57 +01:00
version = "0.3.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"
2019-03-07 07:19:57 +01:00
actix = "0.7"
actix-web = "0.7"
2018-03-13 15:13:21 +01:00
2019-03-07 07:19:57 +01:00
prost = "0.4"
2018-03-13 15:13:21 +01:00
[dev-dependencies]
2019-03-07 07:19:57 +01:00
http = "^0.1"
prost-derive = "^0.4"
2018-03-13 15:13:21 +01:00
[workspace]
members = [
"./",
"examples/prost-example",
2018-03-21 23:43:32 +01:00
]