From afc3fd9db9a71c64cb674c730c5a305f5d5512ab Mon Sep 17 00:00:00 2001 From: Tony Arcieri Date: Thu, 29 May 2025 15:07:55 -0600 Subject: [PATCH] fiat-constify v0.1.0 Also adds `publish = "false"` as this tool is not intended for release (ideally we can eventually get rid of it), but the version bump denotes a major notable change to the codegen --- Cargo.lock | 2 +- fiat-constify/Cargo.toml | 3 ++- 2 files changed, 3 insertions(+), 2 deletions(-) diff --git a/Cargo.lock b/Cargo.lock index 0a6edf21..51407db1 100644 --- a/Cargo.lock +++ b/Cargo.lock @@ -105,7 +105,7 @@ dependencies = [ [[package]] name = "fiat-constify" -version = "0.0.0" +version = "0.1.0" dependencies = [ "prettyplease", "proc-macro2", diff --git a/fiat-constify/Cargo.toml b/fiat-constify/Cargo.toml index 223745b8..b6dbff37 100644 --- a/fiat-constify/Cargo.toml +++ b/fiat-constify/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "fiat-constify" -version = "0.0.0" # Also update html_root_url in lib.rs when bumping this +version = "0.1.0" description = """ Postprocessor for fiat-crypto generated field implementations which rewrites them as `const fn` @@ -15,6 +15,7 @@ keywords = ["fiat-crypto", "field"] readme = "README.md" edition = "2024" rust-version = "1.85" +publish = false [dependencies] prettyplease = "0.2.19"