Skip to content

Commit

Permalink
Updates ion-rust to rc10 (#185)
Browse files Browse the repository at this point in the history
* Updates ion-rust to rc10

* Version bump to v0.10.0
  • Loading branch information
zslayton authored Dec 14, 2024
1 parent 03a3fc8 commit 00fbcdb
Show file tree
Hide file tree
Showing 6 changed files with 205 additions and 103 deletions.
68 changes: 42 additions & 26 deletions Cargo.lock

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

8 changes: 3 additions & 5 deletions Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[package]
name = "ion-cli"
version = "0.9.1"
version = "0.10.0"
authors = ["The Ion Team <ion-team@amazon.com>"]
edition = "2021"
description = "Command line tool for working with the Ion data format."
Expand All @@ -15,23 +15,21 @@ keywords = ["format", "parse", "encode"]
anyhow = "1.0"
clap = { version = "4.5.8", features = ["cargo", "env", "wrap_help"] }
colored = "2.0.0"
digest = "0.9"
sha2 = "0.9"
sha3 = "0.9"
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.9", features = ["experimental", "experimental-ion-hash"] }
ion-rs = { version = "1.0.0-rc.10", features = ["experimental", "experimental-ion-hash"] }
tempfile = "3.2.0"
ion-schema = "0.14.1"
ion-schema = "0.15.0"
lowcharts = "0.5.8"
serde = { version = "1.0.163", features = ["derive"] }
serde_json = { version = "1.0.81", features = ["arbitrary_precision", "preserve_order"] }
base64 = "0.21.1"
tera = { version = "1.18.1" }
convert_case = { version = "0.6.0" }
matches = "0.1.10"
thiserror = "1.0.50"
zstd = "0.13.0"
termcolor = "1.4.1"
Expand Down
2 changes: 1 addition & 1 deletion src/bin/ion/commands/generate/generator.rs
Original file line number Diff line number Diff line change
Expand Up @@ -39,7 +39,7 @@ pub(crate) struct CodeGenerator<'a, L: Language> {

impl<'a> CodeGenerator<'a, RustLanguage> {
#[allow(dead_code)]
pub fn new(output: &'a Path) -> CodeGenerator<RustLanguage> {
pub fn new(output: &'a Path) -> CodeGenerator<'a, RustLanguage> {
let mut tera = Tera::default();
// Add all templates using `rust_templates` module constants
// This allows packaging binary without the need of template resources.
Expand Down
Loading

0 comments on commit 00fbcdb

Please sign in to comment.