Skip to content

Commit 86540c9

Browse files
committed
chore(rust,release): publish driver crates
1 parent 18e66de commit 86540c9

File tree

5 files changed

+12
-8
lines changed

5 files changed

+12
-8
lines changed

dev/release/post-08-rust.sh

Lines changed: 5 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -42,10 +42,14 @@ main() {
4242

4343
pushd "${SOURCE_TOP_DIR}/rust"
4444
cargo publish --all-features -p adbc_core
45+
cargo publish --all-features -p adbc_datafusion
46+
cargo publish --all-features -p adbc_snowflake
4547
popd
4648

47-
echo "Success! The released Cargo crate is available here:"
49+
echo "Success! The released Cargo crates are available here:"
4850
echo " https://crates.io/crates/adbc_core"
51+
echo " https://crates.io/crates/adbc_datafusion"
52+
echo " https://crates.io/crates/adbc_snowflake"
4953
}
5054

5155
main "$@"

rust/Cargo.lock

Lines changed: 4 additions & 4 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

rust/Cargo.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -34,7 +34,7 @@ keywords = ["arrow"]
3434
categories = ["database"]
3535

3636
[workspace.dependencies]
37-
adbc_core = { path = "./core" }
37+
adbc_core = { path = "./core", version = "0.17.0" }
3838
arrow-array = { version = "53.4.0", default-features = false, features = [
3939
"ffi",
4040
] }

rust/driver/datafusion/Cargo.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -31,7 +31,7 @@ keywords.workspace = true
3131
categories.workspace = true
3232

3333
[dependencies]
34-
adbc_core = { path = "../../core" }
34+
adbc_core.workspace = true
3535
arrow-array.workspace = true
3636
arrow-buffer.workspace = true
3737
arrow-schema.workspace = true

rust/driver/snowflake/Cargo.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -42,7 +42,7 @@ env = ["dep:regex"]
4242
dotenv = ["env", "dep:dotenvy"]
4343

4444
[dependencies]
45-
adbc_core = { path = "../../core", features = ["driver_manager"] }
45+
adbc_core = { workspace = true, features = ["driver_manager"] }
4646
arrow-array.workspace = true
4747
arrow-schema.workspace = true
4848
dotenvy = { version = "0.15.7", default-features = false, optional = true }

0 commit comments

Comments
 (0)