Skip to content

Commit

Permalink
Update ion-rs dependency; bump version to 0.9.1 (#180)
Browse files Browse the repository at this point in the history
  • Loading branch information
popematt authored Nov 6, 2024
1 parent 43e20c7 commit 03a3fc8
Show file tree
Hide file tree
Showing 3 changed files with 24 additions and 5 deletions.
21 changes: 18 additions & 3 deletions Cargo.lock

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

4 changes: 2 additions & 2 deletions Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[package]
name = "ion-cli"
version = "0.9.0"
version = "0.9.1"
authors = ["The Ion Team <[email protected]>"]
edition = "2021"
description = "Command line tool for working with the Ion data format."
Expand All @@ -22,7 +22,7 @@ flate2 = "1.0"
infer = "0.15.0"
# ion-rs version must be pinned because we are using experimental features
# See https://github.com/amazon-ion/ion-cli/issues/155
ion-rs = { version = "=1.0.0-rc.8", features = ["experimental", "experimental-ion-hash"] }
ion-rs = { version = "=1.0.0-rc.9", features = ["experimental", "experimental-ion-hash"] }
tempfile = "3.2.0"
ion-schema = "0.14.1"
lowcharts = "0.5.8"
Expand Down
4 changes: 4 additions & 0 deletions src/bin/ion/commands/inspect.rs
Original file line number Diff line number Diff line change
Expand Up @@ -789,6 +789,7 @@ impl<'a, 'b> IonInspector<'a, 'b> {
match raw_annotation? {
RawSymbolRef::SymbolId(sid) => write!(out, "${sid}"),
RawSymbolRef::Text(_) => write!(out, "<text>"),
RawSymbolRef::SystemSymbol_1_1(_) => write!(out, "<system-symbol>"),
}?;
}
Ok(())
Expand Down Expand Up @@ -985,6 +986,9 @@ impl<'a, 'b> IonInspector<'a, 'b> {
RawSymbolRef::Text(_) => {
write!(out, " // <text>")
}
RawSymbolRef::SystemSymbol_1_1(_) => {
write!(out, " // <system-symbol>")
}
}?;
Ok(())
})
Expand Down

0 comments on commit 03a3fc8

Please sign in to comment.