-
Notifications
You must be signed in to change notification settings - Fork 495
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
[Merged by Bors] - Unify common dependencies #3408
Conversation
Hi @c410-f3r! I think we have to bump patch on |
Thank you @EstebanBorai |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Thanks for your contribution. minor issue
connector/cargo_template/Cargo.toml
Outdated
@@ -7,4 +7,4 @@ edition = "2021" | |||
[dependencies] | |||
fluvio = { git = "https://github.com/infinyon/fluvio", rev = "{{fluvio-cargo-dependency-hash}}" } | |||
fluvio-connector-common = { git = "https://github.com/infinyon/fluvio", rev = "{{fluvio-cargo-dependency-hash}}", features = ["derive"]} | |||
serde = { version = "1.0", default-features = false, features = ["derive"]} | |||
serde = { default-features = false, features = ["derive"], workspace = true } |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
templates can't have workspace dependency since they will be deployed outside fluvio repo
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Oopss... Fixed!
Hi @c410-f3r! Thanks for the time and effort invested in this PR! |
Oh, thank you for the heads up! The conflicting file has been fixed. |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
LGTM!
Thanks to you!! |
Looks like |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Thanks @c410-f3r!
bors r+ |
There is a considerable amount of dependencies and I think it is possible to cut some transient slack in order to reduce compilation time. Starting with the unification of common dependencies that aren't part of workspace declarations. `cargo test --all-features` didn't fail so everything should probably be OK.
Pull request successfully merged into master. Build succeeded! The publicly hosted instance of bors-ng is deprecated and will go away soon. If you want to self-host your own instance, instructions are here. If you want to switch to GitHub's built-in merge queue, visit their help page. |
Continuation of #3408 To the best of my knowledge, all common dependencies are now sharing the same workspace definition.
Continuation of #3408 To the best of my knowledge, all common dependencies are now sharing the same workspace definition. Co-authored-by: morenol <[email protected]>
Continuation of #3408 To the best of my knowledge, all common dependencies are now sharing the same workspace definition. Co-authored-by: morenol <[email protected]>
There is a considerable amount of dependencies and I think it is possible to cut some transient slack in order to reduce compilation time.
Starting with the unification of common dependencies that aren't part of workspace declarations.
cargo test --all-features
didn't fail so everything should probably be OK.