Skip to content

Commit

Permalink
Upgrades ion-rust dependency to v1.0.0-rc.10 (#227)
Browse files Browse the repository at this point in the history
* Upgrades ion-rust dependency to v1.0.0-rc.10
* Version bump to v0.15.0
  • Loading branch information
zslayton authored Dec 13, 2024
1 parent c3f7fc6 commit beafbd5
Show file tree
Hide file tree
Showing 4 changed files with 8 additions and 9 deletions.
4 changes: 2 additions & 2 deletions ion-schema-tests-runner/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -9,10 +9,10 @@ proc-macro = true
# See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html

[dependencies]
ion-rs = "1.0.0-rc.8"
ion-rs = { version = "1.0.0-rc.10"}
ion-schema = { path = "../ion-schema" }
quote = "1.0.21"
syn = "1.0.102"
proc-macro2 = "1.0.47"
regex = "1.6.0"
darling = "0.14.2"
darling = "0.14.2"
7 changes: 3 additions & 4 deletions ion-schema/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -16,20 +16,19 @@ exclude = [
"**/ion-schema-schemas/isl/**",
"*.pdf"
]
version = "0.14.1"
version = "0.15.0"
edition = "2021"

# See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html

[dependencies]
ion-rs = { version = "1.0.0-rc.8", features = ["experimental-reader-writer"] }
ion-rs = { version = "1.0.0-rc.10", features = ["experimental-reader-writer"] }
thiserror = "1.0"
num-bigint = "0.3"
num-traits = "0.2"
regex = "1.5.6"
half = "2.2.1"

[dev-dependencies]
rstest = "0.9"
clap = { version = "2.33.3", features = ["yaml"] }
test-generator = "0.3.0"
test-generator = "0.3.0"
4 changes: 2 additions & 2 deletions ion-schema/src/isl/mod.rs
Original file line number Diff line number Diff line change
Expand Up @@ -294,7 +294,7 @@ impl WriteAsIon for SchemaContent {
}

#[derive(Debug, Clone, PartialEq, Default)]
struct SchemaHeader {
pub struct SchemaHeader {
/// Represents the user defined reserved fields
user_reserved_fields: UserReservedFields,
/// Represents all the IslImports inside the schema file.
Expand Down Expand Up @@ -327,7 +327,7 @@ impl WriteAsIon for SchemaHeader {
}

#[derive(Debug, Clone, PartialEq, Default)]
struct SchemaFooter {
pub struct SchemaFooter {
/// User-defined (aka "open") content
user_content: Vec<(String, Element)>,
}
Expand Down
2 changes: 1 addition & 1 deletion wasm-schema-sandbox/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -13,7 +13,7 @@ serde = { version = "1.0", features = ["derive"] }
serde-wasm-bindgen = "0.4"
js-sys = "0.3.61"
ion-schema = { path="../ion-schema" }
ion-rs = "1.0.0-rc.8"
ion-rs = { version = "1.0.0-rc.10", features = ["experimental-reader-writer"] }

[dependencies.web-sys]
version = "0.3"
Expand Down

0 comments on commit beafbd5

Please sign in to comment.