Skip to content

Commit c4a01c6

Browse files
authored
chore(ecosystem): update Morphir UI and Rust pins (#751)
* chore(ecosystem): update Morphir UI and Rust pins Signed-off-by: Damian Reeves <957246+DamianReeves@users.noreply.github.com> * fix(cli): align pinned Rust dependencies Signed-off-by: Damian Reeves <957246+DamianReeves@users.noreply.github.com> --------- Signed-off-by: Damian Reeves <957246+DamianReeves@users.noreply.github.com>
1 parent c94be9e commit c4a01c6

5 files changed

Lines changed: 172 additions & 6 deletions

File tree

Cargo.lock

Lines changed: 162 additions & 3 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

Cargo.toml

Lines changed: 7 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -42,6 +42,13 @@ tracing-subscriber = { version = "0.3", features = ["env-filter", "json"] }
4242
tracing-appender = "0.2"
4343
fs2 = "0.4"
4444

45+
# Filesystem and path handling shared with morphir-rust crates
46+
cap-std = "3.4.5"
47+
cap-fs-ext = "3.4.5"
48+
same-file = "1.0.6"
49+
unicode-casefold = "0.2"
50+
unicode-normalization = "0.1"
51+
4552
# Serialization
4653
serde = { version = "1.0", features = ["derive"] }
4754
serde_json = "1.0"

crates/morphir/src/commands/migrate/format.rs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -180,7 +180,7 @@ fn yaml_root_scalar(source: &str, requested_key: &str) -> Option<String> {
180180
TokenType::Value if at_root_mapping => slot = RootMappingSlot::Value,
181181
TokenType::Scalar(_, value) if at_root_mapping => match slot {
182182
RootMappingSlot::Key => {
183-
requested_value = value.as_ref() == requested_key;
183+
requested_value = AsRef::<str>::as_ref(&value) == requested_key;
184184
}
185185
RootMappingSlot::Value => {
186186
if requested_value {

ecosystem/morphir-rust

Submodule morphir-rust updated 127 files

ecosystem/morphir-ui

Submodule morphir-ui updated 95 files

0 commit comments

Comments
 (0)