-
Notifications
You must be signed in to change notification settings - Fork 79
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
Fix release CI #274
Comments
As I understand the problem is that crate-interdepence via paths is not allowed on crates.io while using versions breaks tests that depend on changes ahead of the latest release. |
How do you suggest to have both simultaneously ? The release should be an automatic operation. |
Like this (this is a dev dependency but should be the same) tokio = { version = "1.0.0", path = "../tokio", features = ["full"] } |
If it helps to know, tokio uses workspaces |
At the moment release CI is broken, it appears that some necessary changes in cargo-workspaces is still not available to allow deployment of multiple crates in an workspace. It's necessary for us to come up with a solution meanwhile.
The text was updated successfully, but these errors were encountered: