加入 Gitee
与超过 1200万 开发者一起发现、参与优秀开源项目,私有仓库也完全免费 :)
免费加入
文件
克隆/下载
Cargo.toml 1.44 KB
一键复制 编辑 原始数据 按行查看 历史
fengyang 提交于 2024-03-08 16:19 . flight proto define
[package]
name = "arrow_flight_sql_protocol_rs"
version = "0.0.1"
edition = "2021"
license = "MIT OR Apache-2.0"
authors = ["fengyang <yueny09@163.com>"]
readme = "README.md"
documentation = "https://docs.rs/arrow_flight_sql_protocol_rs"
description = "arrow_flight_sql_protocol_rs"
publish = true
autobenches = true
# See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html
[dependencies]
arrow = { version = "47.0.0", features = ["prettyprint"] }
arrow-flight = { version = "47.0.0", features = ["flight-sql-experimental"] }
anyhow = "1.0.63"
bytes = "1.5.0"
byteorder = "1.5.0"
chrono = { version = "0.4.31", default-features = false, features = ["clock"] }
config = "0.14.0"
jsonxf = "1.1.1"
log = "0.4"
logos = "0.13"
tracing-appender = "0.2"
prost = { version = "0.12.1" }
prost-build = { version = "0.12.1" }
prost-types = { version = "0.12.1" }
serde = { version = "~1.0.126", features = ["derive"] }
serde_json = "1.0"
serde_bytes = "~0.11.12"
serde_derive = "~1.0.126"
tokio = { version = "~1.35.1", features = [
"macros",
"rt",
"rt-multi-thread",
"net",
"io-util",
"time",
"sync",
] }
tokio-serde = { version = "~0.8", features = ["bincode"] }
tokio-stream = { version = "~0.1.6", features = ["net"] }
tokio-util = { version = "~0.7.8", features = ["codec"] }
tonic = { version = "0.11.0" }
once_cell = { version = "1", default-features = false }
[build-dependencies]
tonic-build = "0.11.0"
马建仓 AI 助手
尝试更多
代码解读
代码找茬
代码优化