Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Issue #1876: Explicitly declare the used features for each dependency in arrow-flight #1880

Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Jump to
Jump to file
Failed to load files.
Diff view
Diff view
20 changes: 10 additions & 10 deletions arrow-flight/Cargo.toml
Expand Up @@ -27,14 +27,14 @@ repository = "https://github.com/apache/arrow-rs"
license = "Apache-2.0"

[dependencies]
arrow = { path = "../arrow", version = "16.0.0" }
base64 = "0.13"
tonic = "0.7"
bytes = "1"
prost = "0.10"
prost-types = { version = "0.10.0", optional = true }
prost-derive = "0.10"
tokio = { version = "1.0", features = ["macros", "rt", "rt-multi-thread"] }
arrow = { path = "../arrow", version = "16.0.0", default-features = false, features = ["ipc"] }
base64 = { version = "0.13", default-features = false }
tustvold marked this conversation as resolved.
Show resolved Hide resolved
tonic = { version = "0.7", default-features = false, features = ["transport", "codegen", "prost"] }
bytes = { version = "1", default-features = false }
tustvold marked this conversation as resolved.
Show resolved Hide resolved
prost = { version = "0.10", default-features = false }
prost-types = { version = "0.10.0", default-features = false, optional = true }
prost-derive = { version = "0.10", default-features = false }
tokio = { version = "1.0", default-features = false, features = ["macros", "rt", "rt-multi-thread"] }
futures = { version = "0.3", default-features = false, features = ["alloc"]}

[features]
Expand All @@ -44,10 +44,10 @@ flight-sql-experimental = ["prost-types"]
[dev-dependencies]

[build-dependencies]
tonic-build = "0.7"
tonic-build = { version = "0.7", default-features = false, features = ["transport", "prost"] }
# Pin specific version of the tonic-build dependencies to avoid auto-generated
# (and checked in) arrow.flight.protocol.rs from changing
proc-macro2 = ">1.0.30"
proc-macro2 = { version = ">1.0.30", default-features = false }

[[example]]
name = "flight_sql_server"
Expand Down