-
Notifications
You must be signed in to change notification settings - Fork 5
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
Fails to compile in a empty project #82
Comments
Is this still an issue that you're facing? I tried following your reproduction steps, however it appears to work for me without the error you're mentioning. I'm planning on upgrading to a more recent tower version anyway, so that may fix the problem if you're still encountering it! |
I take all of that back. It worked completely fine locally for me (even with a clean cache), however started dying in CI for some reason. paritytech/jsonrpsee#1464 seems similar (and equally confused), but I'll enable the feature for now until jsonrpsee can be upgraded! |
|
Thanks! And thanks for the great work on this project! |
Issue Report: Compilation Failure with
qubit
DependencyProject Setup:
In a minimal "Hello, World" Rust project with only the
qubit
dependency, the build fails due to missing features in thetower
crate.Steps to Reproduce:
cargo new hello_world cd hello_world
qubit
as a dependency inCargo.toml
:cargo build
.Observed Output:
The build fails with the following error messages:
These errors indicate that
tower
is attempting to use features that are not enabled by default, such asutil
.Temporary Solution:
To resolve the issue temporarily, I added
tower
as a local dependency to qubit project with theutil
feature enabled:Expected Solution:
For a permanent solution, consider updating the project dependencies so that
tower
is included with the required features enabled by default.The text was updated successfully, but these errors were encountered: