I have 2 C libraries, let's call them A and B and I'm generating low levels bindings for both using bindgen. B is using A's symbols in its API. As a result the bindings generated in B-sys are using B namespaced types instead of A's.
It would be great to be able to ask bindgen to depends on A-sys and use those symbols, saving users to cast between B::some_type to A::some_type when using API from A-sys.