forked from timvw/arrow-flightsql-odbc
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathCargo.toml
37 lines (34 loc) · 1.16 KB
/
Cargo.toml
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
[package]
name = "arrow-flightsql-odbc"
version = "0.2.0"
authors = ["Tim Van Wassenhove <[email protected]>"]
edition = "2021"
description = "An Apache Arrow Flight SQL server which proxies requests over ODBC"
readme = "README.md"
repository = "https://github.com/timvw/arrow-flightsql-odbc"
license = "Apache-2.0"
keywords = ["apache-arrow", "flight-sql", "odbc"]
# See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html
[dependencies]
#odbc-api = "6.0.2"
arrow-odbc = "8.0.0"
tokio = { version = "1.36.0", features = ["full"] }
tonic = { version = "0.7" }
prost = "0.10"
prost-types = { version = "0.10.1" }
prost-derive = "0.10"
futures = { version = "0.3", default-features = false, features = ["alloc"]}
arrow = { version = "50.0.0", features = ["prettyprint"] }
arrow-schema = "50.0.0"
futures-core = "0.3.21"
log = { version = "0.4.17", features = ["kv_unstable"] }
env_logger = "0.9.0"
tokio-stream = "0.1.8"
async-stream = "0.3.3"
tonic-reflection = "0.4.0"
anyhow = "1.0.57"
clap = { version ="3.1.18", features = ["derive", "cargo"] }
serde = { version = "1.0", features = ["derive"] }
bytes = "1.1"
[build-dependencies]
tonic-build = "0.7"