It seems the library does not allow me to use both sync and async APIs from the same project.
I get an error that I should either remove `features = ["sync"]` and use the async API, or add `default-features = false` and use the sync API.
I even tried to wrap the different builds with separate adapter crates, but the macro still crashes the build, even though sync and async crates are imported from different crates (but within the same workspace).
How to use both APIs?
- depends on
-
RUST-995 Support the sync API with tokio
- Closed