Skip to content

Commit

Permalink
⬆️ Upgrade dependencies
Browse files Browse the repository at this point in the history
  • Loading branch information
arthurlm committed Dec 22, 2024
1 parent 9d0af40 commit e72b98e
Show file tree
Hide file tree
Showing 8 changed files with 52 additions and 109 deletions.
135 changes: 39 additions & 96 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 examples/coinbase-example/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -5,9 +5,9 @@ edition = "2021"
publish = false

[dependencies]
anyhow = "1.0.87"
anyhow = "1.0.95"
coinbase-fix42-order-entry = { path = "../coinbase-fix42-order-entry", version = "0.1.0" }
coinbase-fix-utils = { path = "../coinbase-fix-utils", version = "0.1.0" }
quickfix = { path = "../../quickfix", version = "0.1.0" }
uuid = { version = "1.10.0", features = ["v4"] }
uuid = { version = "1.11.0", features = ["v4"] }
parking_lot = "0.12.3"
2 changes: 1 addition & 1 deletion examples/executor/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -9,4 +9,4 @@ quickfix = { path = "../../quickfix", version = "0.1.0" }
quickfix-msg40 = { path = "../../quickfix-msg40", version = "0.1.0" }
quickfix-msg41 = { path = "../../quickfix-msg41", version = "0.1.0" }
quickfix-msg42 = { path = "../../quickfix-msg42", version = "0.1.0" }
thiserror = "1.0.63"
thiserror = "1.0.69"
6 changes: 3 additions & 3 deletions examples/single-order-sender/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -5,9 +5,9 @@ edition = "2021"
publish = false

[dependencies]
anyhow = "1.0.87"
chrono = "0.4.38"
anyhow = "1.0.95"
chrono = "0.4.39"
parking_lot = "0.12.3"
quickfix = { path = "../../quickfix", version = "0.1.0" }
quickfix-msg44 = { path = "../../quickfix-msg44", version = "0.1.0" }
uuid = "1.10.0"
uuid = "1.11.0"
2 changes: 1 addition & 1 deletion quickfix-ffi/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -50,7 +50,7 @@ include = [
[dependencies]

[build-dependencies]
cmake = "0.1.51"
cmake = "0.1.52"
fs_extra = "1.3.0"

[features]
Expand Down
2 changes: 1 addition & 1 deletion quickfix-msg-gen/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -15,4 +15,4 @@ 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.13.0"
bytes = "1.7.1"
bytes = "1.9.0"
6 changes: 3 additions & 3 deletions quickfix-spec-parser/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -12,6 +12,6 @@ rust-version = "1.70.0"
exclude = ["examples"]

[dependencies]
bytes = "1.7.1"
quick-xml = "0.36.1"
thiserror = "1.0.63"
bytes = "1.9.0"
quick-xml = "0.36.2"
thiserror = "1.0.69"
4 changes: 2 additions & 2 deletions quickfix/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -12,11 +12,11 @@ rust-version = "1.70.0"

[dependencies]
quickfix-ffi = { path = "../quickfix-ffi", version = "0.1.0" }
thiserror = "1.0.63"
thiserror = "1.0.69"
log = { version = "0.4.22", optional = true }

[dev-dependencies]
colored = "2.1.0"
colored = "2.2.0"

[features]
default = ["log"]
Expand Down

0 comments on commit e72b98e

Please sign in to comment.