damienpontifex / azure-iot-sdk-rs

A rust library for connecting devices to Microsoft Azure IoT Hub
MIT License
14 stars 11 forks source link

Progressively enable tokio features based on features for this library #28

Open damienpontifex opened 4 years ago

damienpontifex commented 4 years ago

Some features (e.g. any c2d messaging, direct methods, twin updates) if disabled also then mean tokio features can be not used. In the case here, we don't need sync if there isn't any incoming message features required

Look across other tokio enabled features and have them progressively enabled if the features require them in this library

Related to #27