blob: 38c277df5e97844e8f944914e816d4b610f1105b [file] [log] [blame]
Allen George8b96bfb2016-11-02 08:01:08 -04001[package]
2name = "thrift"
3description = "Rust bindings for the Apache Thrift RPC system"
Tdxdxoz85d82bf2022-07-17 14:14:12 +02004edition = "2021"
Jens Geyer0d5b4f92023-07-08 12:49:11 +02005version = "0.20.0"
Allen George8b96bfb2016-11-02 08:01:08 -04006license = "Apache-2.0"
7authors = ["Apache Thrift Developers <dev@thrift.apache.org>"]
8homepage = "http://thrift.apache.org"
Dirkjan Ochtman70792f22020-12-08 13:46:28 +01009documentation = "https://docs.rs/thrift"
10repository = "https://github.com/apache/thrift/tree/master/lib/rs"
Allen George8b96bfb2016-11-02 08:01:08 -040011readme = "README.md"
Allen Georgef9f037b2018-12-27 13:56:21 -050012exclude = ["Makefile*", "test/**", "*.iml"]
Allen George8b96bfb2016-11-02 08:01:08 -040013keywords = ["thrift"]
14
15[dependencies]
James E. King III93ff9b02019-06-21 17:50:34 -040016byteorder = "1.3"
Jiayu Liu20556362022-07-01 23:34:36 +080017integer-encoding = "3.0.3"
Jorge C. Leitao77afa012021-08-08 14:51:15 +000018log = {version = "0.4", optional = true}
Eran Rundstein529f7782022-10-08 03:49:31 -070019ordered-float = "3.0"
Jorge C. Leitao77afa012021-08-08 14:51:15 +000020threadpool = {version = "1.7", optional = true}
21
22[features]
23default = ["server"]
24server = ["threadpool", "log"]