capnpc 0.14.4

Cap'n Proto code generation
Documentation
[package]

name = "capnpc"
version = "0.14.4"
authors = [ "David Renshaw <dwrenshaw@gmail.com>" ]
license = "MIT"
description = "Cap'n Proto code generation"
repository = "https://github.com/capnproto/capnproto-rust"
documentation = "http://docs.capnproto-rust.org/capnpc"
edition = "2018"

readme = "README.md"

keywords = ["encoding", "protocol", "serialization"]

[lib]

name = "capnpc"
path = "src/lib.rs"

[[bin]]

name = "capnpc-rust"
path = "src/capnpc-rust.rs"

[dependencies.capnp]
version = "0.14.0"
path = "../capnp"

# Don't include "std" feature, so that dependent crates can include a build-time
# capnpc dependency still use capnp with no-std.
#
# This might not be necessary in the future, if cargo supports separate feature sets for
# build and main dependencies: https://github.com/rust-lang/cargo/issues/7915
#
# Doing this forces capnpc to define its own mapping from std::io::Read to capnp::io::Read.
# Fortunately, this is pretty easy, and is just an internal implementation detail.
default-features=false
features=[]