Skip to content

Commit

Permalink
bump rust_decimal
Browse files Browse the repository at this point in the history
  • Loading branch information
kurtbuilds committed Nov 29, 2023
1 parent f706bc0 commit 6075924
Showing 1 changed file with 3 additions and 1 deletion.
4 changes: 3 additions & 1 deletion libninja/src/rust.rs
Original file line number Diff line number Diff line change
Expand Up @@ -252,10 +252,12 @@ fn bump_version_and_update_deps(extras: &Extras, opts: &OutputOptions) -> anyhow
if extras.currency {
manifest.dependencies.entry("rust_decimal".to_string())
.or_insert(cargo_toml::Dependency::Detailed(cargo_toml::DependencyDetail {
version: Some("1.28.1".to_string()),
version: Some("1.33".to_string()),
features: vec!["serde-with-str".to_string()],
..cargo_toml::DependencyDetail::default()
}));
manifest.dependencies.entry("rust_decimal_macros".to_string())
.or_insert(cargo_toml::Dependency::Simple("1.33".to_string()));
}
if extras.date_serialization {
manifest.dependencies.entry("chrono".to_string())
Expand Down

0 comments on commit 6075924

Please sign in to comment.