thrift/lib/rs/Cargo.toml
2021-08-22 18:46:08 +02:00

25 lines
678 B
TOML

[package]
name = "thrift"
description = "Rust bindings for the Apache Thrift RPC system"
edition = "2018"
version = "0.16.0"
license = "Apache-2.0"
authors = ["Apache Thrift Developers <dev@thrift.apache.org>"]
homepage = "http://thrift.apache.org"
documentation = "https://docs.rs/thrift"
repository = "https://github.com/apache/thrift/tree/master/lib/rs"
readme = "README.md"
exclude = ["Makefile*", "test/**", "*.iml"]
keywords = ["thrift"]
[dependencies]
byteorder = "1.3"
integer-encoding = "3.0"
log = {version = "0.4", optional = true}
ordered-float = "1.0"
threadpool = {version = "1.7", optional = true}
[features]
default = ["server"]
server = ["threadpool", "log"]