-
-
Notifications
You must be signed in to change notification settings - Fork 85
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Could not find future
in core
#109
Comments
Can you provide a minimal git repo or something which I could |
Hi, thank you for quick response. Seems like the case is much more complicated then I thought ...
I don't know if it suits you but I can give you a link to the branch of my repo where original problem can be reproduced. Here it is https://github.com/alex-dukhno/database/tree/initial-extraction-of-api-for-pg-wire-protocol |
It looks like you've provided your own implementation of |
future
in core
Thanks. Then I’ll rename the create |
It turns out that it is bad idea to have a crate named `core`. The name is already used in the standard library which can confuse for example macros in dependencies that want to refer to the real `core` crate. I encounted this when trying to use the async-trait macro dtolnay/async-trait#109 .
It turns out that it is bad idea to have a crate named `core`. The name is already used in the standard library which can confuse for example macros in dependencies that want to refer to the real `core` crate. I encounted this when trying to use the async-trait macro dtolnay/async-trait#109 .
Hi there,
I've got the following case:
when I compiling the project I got the following compiler error:
Thank you
The text was updated successfully, but these errors were encountered: