Skip to content

Commit b825a4f

Browse files
authored
[Rust] Update fable-library-rust dependencies (#4278)
1 parent 6b0dc72 commit b825a4f

File tree

3 files changed

+7
-5
lines changed

3 files changed

+7
-5
lines changed

src/Fable.Cli/CHANGELOG.md

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -13,6 +13,7 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0
1313

1414
### Changed
1515

16+
* [Rust] Update `fable-library-rust` dependencies (by @ncave)
1617
* [All] Update TargetFramework to net10.0 (by @ncave)
1718
* [All] Update FCS to latest (commit [cfda5f6](https://github.com/dotnet/fsharp/commits/cfda5f68f781f1b336b7d6c1689d69f2c34da751/)) (by @ncave)
1819

src/Fable.Compiler/CHANGELOG.md

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -13,6 +13,7 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0
1313

1414
### Changed
1515

16+
* [Rust] Update `fable-library-rust` dependencies (by @ncave)
1617
* [All] Update TargetFramework to net10.0 (by @ncave)
1718
* [All] Update FCS to latest (commit [cfda5f6](https://github.com/dotnet/fsharp/commits/cfda5f68f781f1b336b7d6c1689d69f2c34da751/)) (by @ncave)
1819

src/fable-library-rust/Cargo.toml

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -22,16 +22,16 @@ default = ["bigint", "datetime", "decimal", "enum_func", "enum_string", "guid",
2222
chrono = { version = "0.4", optional = true }
2323
futures = { version = "0.3", features = ["executor", "thread-pool"], default-features = false, optional = true }
2424
futures-timer = { version = "3.0", optional = true }
25-
hashbrown = { version = "0.15", optional = true }
25+
hashbrown = { version = "0.16", optional = true }
2626
num-bigint = { version = "0.4", optional = true }
2727
num-integer = { version = "0.1", optional = true }
2828
num-traits = { version = "0.2", optional = true }
29-
regex = { version = "1.11", optional = true }
30-
rust_decimal = { version = "1.37", features = ["maths"], default-features = false, optional = true }
29+
regex = { version = "1.12", optional = true }
30+
rust_decimal = { version = "1.39", features = ["maths"], default-features = false, optional = true }
3131
startup = { version = "0.1", path = "vendored/startup", optional = true }
3232

3333
[target.'cfg(not(target_arch = "wasm32"))'.dependencies]
34-
uuid = { version = "1.17", features = ["v4"], default-features = false, optional = true }
34+
uuid = { version = "1.18", features = ["v4"], default-features = false, optional = true }
3535

3636
[target.'cfg(target_arch = "wasm32")'.dependencies]
37-
uuid = { version = "1.17", features = ["v4", "js"], default-features = false, optional = true }
37+
uuid = { version = "1.18", features = ["v4", "js"], default-features = false, optional = true }

0 commit comments

Comments
 (0)