From 9f645353e913014692c64b81c027b7e57d3762e7 Mon Sep 17 00:00:00 2001
From: "dependabot[bot]" <49699333+dependabot[bot]@users.noreply.github.com>
Date: Wed, 23 Jul 2025 16:07:33 -0700
Subject: [PATCH] chore(deps): bump strum from 0.27.1 to 0.27.2 in /codex-rs
(#1639)
MIME-Version: 1.0
Content-Type: text/plain; charset=UTF-8
Content-Transfer-Encoding: 8bit
Bumps [strum](https://github.com/Peternator7/strum) from 0.27.1 to
0.27.2.
Sourced from strum's
releases. Full Changelog: https://github.com/Peternator7/strum/compare/v0.27.1...v0.27.2 Sourced from strum's
changelog. #141:
Adding support for doc comments on #435:allow
discriminants on empty enum. #443:
Change enum table callbacks to FnMut. #444:
Add #440:
Implement a fn main() {
let response = SurveyResponse::Other("It was good".into());
println!("Loading configuration from: {}",
StorageConfiguration::PostgresProvider);
// prints: Loaded Configuration from: postgres_provider.json
}
Release notes
v0.27.2
What's Changed
EnumDiscriminants
generated type… by @linclelinkpart5
in Peternator7/strum#141rustversion dependency by @paolobarbolini
in Peternator7/strum#446phf to v0.12 by @paolobarbolini
in Peternator7/strum#448@crop2000 in Peternator7/strum#435@schneems in Peternator7/strum#427@ClaytonKnittel
in Peternator7/strum#443#[automatically_derived] to the impls
by @dandedotdev in
Peternator7/strum#444suffix attribute for serialization of enum
variants by @amogh-dambal
in Peternator7/strum#440@Peternator7 in
Peternator7/strum#449New Contributors
@paolobarbolini
made their first contribution in Peternator7/strum#446@crop2000
made their first contribution in Peternator7/strum#435@schneems
made their first contribution in Peternator7/strum#427@ClaytonKnittel
made their first contribution in Peternator7/strum#443@dandedotdev
made their first contribution in Peternator7/strum#444@amogh-dambal
made their first contribution in Peternator7/strum#440Changelog
0.27.2
EnumDiscriminants
generated type.
#[automatically_derived] to the impls by
@dandedotdev
in Peternator7/strum#444
suffix attribute for serialization of enum
variants.#[derive(strum::Display)]
#[strum(suffix=".json")]
#[strum(serialize_all="snake_case")]
enum StorageConfiguration {
PostgresProvider,
S3StorageProvider,
AzureStorageProvider,
}
#446:
Drop needless rustversion dependency.
38f6621
Expound upon use_phf docs (#449)bb13390
Implement a suffix attribute for serialization of enum
variants (#440)c9e52bf
Add #[automatically_derived] to the impls (#444)1b00f89
Change enum table callbacks to FnMut. (#443)6e2ca25
Remove broken link to EnumTable docs (#427)9503781
allow discriminants on empty enum (#435)8553ba2
Upgrade phf to v0.12 (#448)2eba5c2
Drop needless rustversion dependency (#446)f301b67
Merge branch 'linclelinkpart5-master-2'455b2bf
Merge branch 'master' of https://github.com/linclelinkpart5/strum
into lincle...