chore: unify protobuf features
Before this change we were building protobuf twice with different set of features being enabled. Part of cargo build --timings output before this change: protobuf v2.28.0 3.3s 1.5s (46%) bytes protobuf v2.28.0 2.6s 0.7s (27%) bytes, with-bytes With this patch duplication is removed
parent
cc623933
No related branches found
No related tags found
Pipeline #24809 failed
Stage: build-base-image
Stage: test
Stage: pack
Stage: sign
Stage: deploy
Stage: check-deployment
... | ... | @@ -31,7 +31,7 @@ comfy-table = "7.0.1" |
[dependencies.protobuf] | ||
version = "2.27" | ||
features = ["bytes"] | ||
features = ["bytes", "with-bytes"] | ||
[dependencies.sbroad-core] | ||
version = "0.1" | ||
... | ... |
Please register or sign in to comment