Skip to content

Commit

Permalink
build(deps): bump uint from 0.9.1 to 0.10.0 (#7261)
Browse files Browse the repository at this point in the history
* build(deps): bump uint from 0.9.1 to 0.10.0

Bumps [uint](https://github.com/paritytech/parity-common) from 0.9.1 to 0.10.0.
- [Commits](paritytech/parity-common@uint-v0.9.1...uint-v0.10.0)

---
updated-dependencies:
- dependency-name: uint
  dependency-type: direct:production
  update-type: version-update:semver-minor
...

Signed-off-by: dependabot[bot] <[email protected]>

* Allow missing docs for new version

---------

Signed-off-by: dependabot[bot] <[email protected]>
Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
Co-authored-by: Jon C <[email protected]>
  • Loading branch information
dependabot[bot] and joncinque authored Sep 12, 2024
1 parent 4ea1cf3 commit d86ecb3
Show file tree
Hide file tree
Showing 8 changed files with 9 additions and 6 deletions.
4 changes: 2 additions & 2 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 binary-option/program/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -16,7 +16,7 @@ spl-token = { version = "6.0", path = "../../token/program", features = [
] }
arrayref = "0.3.8"
borsh = "1.5.1"
uint = "0.9"
uint = "0.10"

[lib]
crate-type = ["cdylib", "lib"]
2 changes: 1 addition & 1 deletion binary-oracle-pair/program/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -18,7 +18,7 @@ spl-token = { version = "6.0", path = "../../token/program", features = [
"no-entrypoint",
] }
thiserror = "1.0"
uint = "0.9"
uint = "0.10"
borsh = "1.5.1"

[dev-dependencies]
Expand Down
2 changes: 1 addition & 1 deletion libraries/math/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -17,7 +17,7 @@ num-derive = "0.4"
num-traits = "0.2"
solana-program = "2.0.3"
thiserror = "1.0"
uint = "0.9"
uint = "0.10"

[dev-dependencies]
proptest = "1.5.0"
Expand Down
1 change: 1 addition & 0 deletions libraries/math/src/uint.rs
Original file line number Diff line number Diff line change
Expand Up @@ -5,6 +5,7 @@
#![allow(clippy::assign_op_pattern)]
#![allow(clippy::ptr_offset_with_cast)]
#![allow(clippy::manual_range_contains)]
#![allow(missing_docs)]

use uint::construct_uint;

Expand Down
2 changes: 1 addition & 1 deletion token-lending/program/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -19,7 +19,7 @@ num-traits = "0.2"
solana-program = "2.0.3"
spl-token = { version = "6.0", path = "../../token/program", features = [ "no-entrypoint" ] }
thiserror = "1.0"
uint = "0.9"
uint = "0.10"

[dev-dependencies]
assert_matches = "1.5.0"
Expand Down
1 change: 1 addition & 0 deletions token-lending/program/src/math/decimal.rs
Original file line number Diff line number Diff line change
Expand Up @@ -11,6 +11,7 @@
#![allow(clippy::assign_op_pattern)]
#![allow(clippy::ptr_offset_with_cast)]
#![allow(clippy::manual_range_contains)]
#![allow(missing_docs)]

use {
crate::{
Expand Down
1 change: 1 addition & 0 deletions token-lending/program/src/math/rate.rs
Original file line number Diff line number Diff line change
Expand Up @@ -17,6 +17,7 @@
#![allow(clippy::ptr_offset_with_cast)]
#![allow(clippy::reversed_empty_ranges)]
#![allow(clippy::manual_range_contains)]
#![allow(missing_docs)]

use {
crate::{
Expand Down

0 comments on commit d86ecb3

Please sign in to comment.