2022-05-05 18:28:47 +02:00
|
|
|
[package]
|
|
|
|
name = "prost-codec"
|
|
|
|
edition = "2021"
|
2022-11-18 22:04:16 +11:00
|
|
|
rust-version = "1.60.0"
|
2022-05-05 18:28:47 +02:00
|
|
|
description = "Asynchronous de-/encoding of Protobuf structs using asynchronous-codec, unsigned-varint and prost."
|
2022-11-02 23:02:21 +11:00
|
|
|
version = "0.3.0"
|
2022-05-05 18:28:47 +02:00
|
|
|
authors = ["Max Inden <mail@max-inden.de>"]
|
|
|
|
license = "MIT"
|
|
|
|
repository = "https://github.com/libp2p/rust-libp2p"
|
|
|
|
keywords = ["networking"]
|
|
|
|
categories = ["asynchronous"]
|
|
|
|
|
|
|
|
[dependencies]
|
|
|
|
asynchronous-codec = { version = "0.6" }
|
|
|
|
bytes = { version = "1" }
|
2022-08-16 08:49:09 +02:00
|
|
|
prost = "0.11"
|
2022-05-05 18:28:47 +02:00
|
|
|
thiserror = "1.0"
|
|
|
|
unsigned-varint = { version = "0.7", features = ["asynchronous_codec"] }
|
|
|
|
|
|
|
|
[dev-dependencies]
|
2022-08-16 08:49:09 +02:00
|
|
|
prost-build = "0.11"
|
2022-10-24 04:00:20 +02:00
|
|
|
|
2022-11-17 09:17:31 +04:00
|
|
|
# Passing arguments to the docsrs builder in order to properly document cfg's.
|
2022-10-24 04:00:20 +02:00
|
|
|
# More information: https://docs.rs/about/builds#cross-compiling
|
|
|
|
[package.metadata.docs.rs]
|
|
|
|
all-features = true
|
|
|
|
rustdoc-args = ["--cfg", "docsrs"]
|
|
|
|
rustc-args = ["--cfg", "docsrs"]
|