-
Notifications
You must be signed in to change notification settings - Fork 495
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
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.
- Loading branch information
Showing
20 changed files
with
63 additions
and
59 deletions.
There are no files selected for viewing
Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.
Oops, something went wrong.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,6 +1,6 @@ | ||
[package] | ||
name = "fluvio-protocol-derive" | ||
version = "0.5.3" | ||
version = "0.5.4" | ||
edition = "2021" | ||
authors = ["Fluvio Contributors <[email protected]>"] | ||
description = "Procedure macro to encode/decode fluvio protocol" | ||
|
@@ -13,9 +13,9 @@ proc-macro = true | |
doctest = false | ||
|
||
[dependencies] | ||
proc-macro2 = "1.0.0" | ||
quote = "1.0.0" | ||
tracing = "0.1" | ||
proc-macro2 = { workspace = true } | ||
quote = { workspace = true } | ||
tracing = { workspace = true } | ||
|
||
[dependencies.syn] | ||
version = "1.0.0" | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,6 +1,6 @@ | ||
[package] | ||
name = "fluvio-smartmodule-derive" | ||
version = "0.6.1" | ||
version = "0.6.2" | ||
edition = "2021" | ||
license = "Apache-2.0" | ||
authors = ["Fluvio Contributors <[email protected]>"] | ||
|
@@ -14,5 +14,5 @@ proc-macro = true | |
|
||
[dependencies] | ||
syn = { workspace = true, features = ["full"] } | ||
quote = "1.0" | ||
proc-macro2 = "1.0" | ||
quote = { workspace = true } | ||
proc-macro2 = { workspace = true } |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,6 +1,6 @@ | ||
[package] | ||
name = "fluvio-smartmodule" | ||
version = "0.7.2" | ||
version = "0.7.3" | ||
edition = "2021" | ||
license = "Apache-2.0" | ||
authors = ["Fluvio Contributors <[email protected]>"] | ||
|
@@ -25,9 +25,8 @@ smartmodule = [] | |
[dependencies] | ||
tracing = { workspace = true } | ||
thiserror = { workspace = true } | ||
eyre = { version = ">=0.6.8", default-features = false, features = [ | ||
"auto-install", | ||
] } | ||
|
||
eyre = { default-features = false, features = ["auto-install"], workspace = true } | ||
fluvio-smartmodule-derive = { version = "0.6.1", path = "../fluvio-smartmodule-derive" } | ||
fluvio-protocol = { workspace = true, features = ["link", "types"] } | ||
|
||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,6 +1,6 @@ | ||
[package] | ||
name = "fluvio-socket" | ||
version = "0.14.4" | ||
version = "0.14.5" | ||
edition = "2021" | ||
authors = ["Fluvio Contributors <[email protected]>"] | ||
description = "Provide TCP socket wrapper for fluvio protocol" | ||
|
@@ -20,12 +20,12 @@ tracing = { workspace = true } | |
cfg-if = { workspace = true } | ||
bytes = { workspace = true } | ||
once_cell = { workspace = true } | ||
futures-util = { version = "0.3.5", features = ["sink", "io"] } | ||
futures-util = { features = ["sink", "io"], workspace = true } | ||
async-lock = { workspace = true } | ||
event-listener = { workspace = true } | ||
async-channel = { workspace = true } | ||
tokio = { workspace = true, features = ["macros"] } | ||
tokio-util = { version = "0.7.0", features = ["codec", "compat"] } | ||
tokio-util = { features = ["codec", "compat"], workspace = true } | ||
async-trait = { workspace = true } | ||
pin-project = { workspace = true } | ||
thiserror = { workspace = true } | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters