Skip to content

Commit 03a3fc8

Browse files
authored
Update ion-rs dependency; bump version to 0.9.1 (#180)
1 parent 43e20c7 commit 03a3fc8

File tree

3 files changed

+24
-5
lines changed

3 files changed

+24
-5
lines changed

Cargo.lock

Lines changed: 18 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: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
[package]
22
name = "ion-cli"
3-
version = "0.9.0"
3+
version = "0.9.1"
44
authors = ["The Ion Team <[email protected]>"]
55
edition = "2021"
66
description = "Command line tool for working with the Ion data format."
@@ -22,7 +22,7 @@ flate2 = "1.0"
2222
infer = "0.15.0"
2323
# ion-rs version must be pinned because we are using experimental features
2424
# See https://github.com/amazon-ion/ion-cli/issues/155
25-
ion-rs = { version = "=1.0.0-rc.8", features = ["experimental", "experimental-ion-hash"] }
25+
ion-rs = { version = "=1.0.0-rc.9", features = ["experimental", "experimental-ion-hash"] }
2626
tempfile = "3.2.0"
2727
ion-schema = "0.14.1"
2828
lowcharts = "0.5.8"

src/bin/ion/commands/inspect.rs

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -789,6 +789,7 @@ impl<'a, 'b> IonInspector<'a, 'b> {
789789
match raw_annotation? {
790790
RawSymbolRef::SymbolId(sid) => write!(out, "${sid}"),
791791
RawSymbolRef::Text(_) => write!(out, "<text>"),
792+
RawSymbolRef::SystemSymbol_1_1(_) => write!(out, "<system-symbol>"),
792793
}?;
793794
}
794795
Ok(())
@@ -985,6 +986,9 @@ impl<'a, 'b> IonInspector<'a, 'b> {
985986
RawSymbolRef::Text(_) => {
986987
write!(out, " // <text>")
987988
}
989+
RawSymbolRef::SystemSymbol_1_1(_) => {
990+
write!(out, " // <system-symbol>")
991+
}
988992
}?;
989993
Ok(())
990994
})

0 commit comments

Comments
 (0)