dropbox / pb-jelly

A protobuf code generation framework for the Rust language developed at Dropbox.
Apache License 2.0
610 stars 25 forks source link

Update BUILD.bazel codegen to include `edition = "2018"` #55

Closed ParkMyCar closed 3 years ago

ParkMyCar commented 3 years ago

This is pretty simple, in the codegen script we need to update the template for the rust_library bazel rule include edition = "2018", e.g. the rule should be:

rust_library(
    name = "{crate}",
    crate_type = "lib",
    edition = "2018",
)
RSMuthu commented 3 years ago

Hi, I shall take it up.

ParkMyCar commented 3 years ago

Great! Thanks @RSMuthu

RSMuthu commented 3 years ago

@ParkMyCar can you please assign this to me

ParkMyCar commented 3 years ago

This was closed by #57