make sure you have a rust toolchain installed
cargo build --release --all-features
cargo doc --all-features --no-deps
if you want to open the docs after building
cargo doc --all-features --no-deps --open
Be careful when upgrading the bb8-tiberius
or tokio-util
crates (libraries) in Cargo.toml
.
Because there are trait implementations that works for both a tiberius::Client
and a bb8::PooledConnection
,
the version of tokio-util
in Cargo.toml must match the version of tokio-util
that bb8-tiberius
is using.