Skip to content

Commit

Permalink
⬆️ Upgrade itertools and quick-xml dependencies
Browse files Browse the repository at this point in the history
  • Loading branch information
arthurlm committed Sep 8, 2024
1 parent c7034ab commit e1af274
Show file tree
Hide file tree
Showing 4 changed files with 7 additions and 7 deletions.
8 changes: 4 additions & 4 deletions Cargo.lock

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

2 changes: 1 addition & 1 deletion quickfix-msg-gen/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -14,5 +14,5 @@ rust-version = "1.70.0"
quickfix-spec-parser = { path = "../quickfix-spec-parser", version = "0.1.0" }
quickfix = { path = "../quickfix", version = "0.1.0" }
convert_case = "0.6.0"
itertools = "0.12.1"
itertools = "0.13.0"
bytes = "1.7.1"
2 changes: 1 addition & 1 deletion quickfix-spec-parser/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -13,5 +13,5 @@ exclude = ["examples"]

[dependencies]
bytes = "1.7.1"
quick-xml = "0.31.0"
quick-xml = "0.36.1"
thiserror = "1.0.63"
2 changes: 1 addition & 1 deletion quickfix-spec-parser/src/lib.rs
Original file line number Diff line number Diff line change
Expand Up @@ -51,7 +51,7 @@ type XmlReader<'a> = Reader<&'a [u8]>;
/// Try converting byte array into a FIX spec tree.
pub fn parse_spec(input: &[u8]) -> Result<FixSpec, FixSpecError> {
let mut reader = Reader::from_reader(input);
reader.trim_text(true);
reader.config_mut().trim_text(true);

match reader.read_event()? {
// If we are at start of FIX spec.
Expand Down

0 comments on commit e1af274

Please sign in to comment.