Skip to content

[Rust] Make Rust crate version configurable. #996

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
merged 1 commit into from
Aug 22, 2024
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Original file line number Diff line number Diff line change
Expand Up @@ -48,6 +48,7 @@
*/
public class RustGenerator implements CodeGenerator
{
private static final String CRATE_VERSION = System.getProperty("sbe.rust.crate.version");
static final String WRITE_BUF_TYPE = "WriteBuf";
static final String READ_BUF_TYPE = "ReadBuf";
static final String BUF_LIFETIME = "'a";
Expand Down Expand Up @@ -114,10 +115,11 @@ public void generate() throws IOException
{
namespace = (ir.namespaceName() + "_" + packageName).toLowerCase();
}
final String version = CRATE_VERSION == null ? "0.1.0" : CRATE_VERSION;

indent(writer, 0, "[package]\n");
indent(writer, 0, "name = \"%s\"\n", namespace);
indent(writer, 0, "version = \"0.1.0\"\n");
indent(writer, 0, "version = \"%s\"\n", version);
indent(writer, 0, "authors = [\"sbetool\"]\n");
indent(writer, 0, "description = \"%s\"\n", ir.description());
indent(writer, 0, "edition = \"2021\"\n\n");
Expand Down
Loading