ds2484-0.0.4 has been yanked.
ds2484
Implementation of the embedded-onewire traits for the Analog Devices DS2484 I2C-to-1-Wire bridge device.
Usage
Add the following to your Cargo.toml:
= "0.0.4"
Synchronous Operations
use Ds2484Builder;
let mut i2c = todo!;
let delay = todo!;
let mut ds2484 = default
.build
.expect;
Asynchronous Operations
use Ds2484Builder;
let mut i2c = todo!;
let delay = todo!;
let mut ds2484 = default
.build_async
.await
.expect;