Skip to content

Commit

Permalink
Add version to ballista dependencies (apache#852)
Browse files Browse the repository at this point in the history
  • Loading branch information
andygrove authored Aug 10, 2021
1 parent 96658eb commit deb9293
Show file tree
Hide file tree
Showing 4 changed files with 12 additions and 15 deletions.
8 changes: 4 additions & 4 deletions ballista/rust/client/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -26,14 +26,14 @@ authors = ["Apache Arrow <[email protected]>"]
edition = "2018"

[dependencies]
ballista-core = { path = "../core" }
ballista-executor = { path = "../executor", optional = true }
ballista-scheduler = { path = "../scheduler", optional = true }
ballista-core = { path = "../core", version = "0.5.0" }
ballista-executor = { path = "../executor", version = "0.5.0", optional = true }
ballista-scheduler = { path = "../scheduler", version = "0.5.0", optional = true }
futures = "0.3"
log = "0.4"
tokio = "1.0"

datafusion = { path = "../../../datafusion" }
datafusion = { path = "../../../datafusion", version = "5.0.0" }

[features]
default = []
Expand Down
2 changes: 1 addition & 1 deletion ballista/rust/core/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -44,7 +44,7 @@ uuid = { version = "0.8", features = ["v4"] }

arrow-flight = { version = "5.0" }

datafusion = { path = "../../../datafusion" }
datafusion = { path = "../../../datafusion", version = "5.0.0" }

[dev-dependencies]
tempfile = "3"
Expand Down
10 changes: 4 additions & 6 deletions ballista/rust/executor/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -29,10 +29,13 @@ edition = "2018"
snmalloc = ["snmalloc-rs"]

[dependencies]
arrow = { version = "5.0" }
arrow-flight = { version = "5.0" }
anyhow = "1"
async-trait = "0.1.36"
ballista-core = { path = "../core" }
ballista-core = { path = "../core", version = "0.5.0" }
configure_me = "0.4.0"
datafusion = { path = "../../../datafusion", version = "5.0.0" }
env_logger = "0.8"
futures = "0.3"
log = "0.4"
Expand All @@ -43,11 +46,6 @@ tokio-stream = { version = "0.1", features = ["net"] }
tonic = "0.5"
uuid = { version = "0.8", features = ["v4"] }

arrow = { version = "5.0" }
arrow-flight = { version = "5.0" }

datafusion = { path = "../../../datafusion" }

[dev-dependencies]

[build-dependencies]
Expand Down
7 changes: 3 additions & 4 deletions ballista/rust/scheduler/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -32,9 +32,10 @@ sled = ["sled_package", "tokio-stream"]

[dependencies]
anyhow = "1"
ballista-core = { path = "../core" }
ballista-core = { path = "../core", version = "0.5.0" }
clap = "2"
configure_me = "0.4.0"
datafusion = { path = "../../../datafusion", version = "5.0.0" }
env_logger = "0.8"
etcd-client = { version = "0.6", optional = true }
futures = "0.3"
Expand All @@ -53,10 +54,8 @@ tonic = "0.5"
tower = { version = "0.4" }
warp = "0.3"

datafusion = { path = "../../../datafusion" }

[dev-dependencies]
ballista-core = { path = "../core" }
ballista-core = { path = "../core", version = "0.5.0" }
uuid = { version = "0.8", features = ["v4"] }

[build-dependencies]
Expand Down

0 comments on commit deb9293

Please sign in to comment.