Skip to content
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
14 changes: 14 additions & 0 deletions docs/source/rust/quickstart.rst
Original file line number Diff line number Diff line change
Expand Up @@ -32,6 +32,20 @@ Add a dependency on ``adbc_core`` and ``adbc_datafusion``:

cargo add adbc_core adbc_datafusion

.. note:: If you get a compiler error (E0308, mismatched types) and a note about
multiple versions of the arrow crates in the dependency graph when you
run ``cargo build``, you can downgrade crate versions so you only have
one version of the arrow crates in your workspace:

.. code-block:: shell

cargo update -p [email protected] -p [email protected] --precise 56.2.0

Note the exact versions in the command above may need to be changed.
Use ``cargo tree`` to find the versions affecting your workspace. See
the `Version Incompatibility Hazards <https://doc.rust-lang.org/cargo/reference/resolver.html#version-incompatibility-hazards>`__
in the Cargo documentation for more information.

Loading DataFusion
==================

Expand Down
Loading