blob: dd4a1b641cc2332e6f81c43c6e60f49f6ca8777f [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 Geyer75cf93e2024-02-04 14:50:37 +01005version = "0.21.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"
Jiayu Liub6b6dc72022-10-08 14:28:44 +080018uuid = "1"
Jorge C. Leitao77afa012021-08-08 14:51:15 +000019log = {version = "0.4", optional = true}
Eran Rundstein529f7782022-10-08 03:49:31 -070020ordered-float = "3.0"
Jorge C. Leitao77afa012021-08-08 14:51:15 +000021threadpool = {version = "1.7", optional = true}
22
23[features]
24default = ["server"]
25server = ["threadpool", "log"]
Jiayu Liub6b6dc72022-10-08 14:28:44 +080026
27[dev-dependencies]
28uuid = { version = "*", features = ["v4"] }