Skip to content
This repository was archived by the owner on Mar 11, 2025. It is now read-only.

Commit d86ecb3

Browse files
build(deps): bump uint from 0.9.1 to 0.10.0 (#7261)
* 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]>
1 parent 4ea1cf3 commit d86ecb3

File tree

8 files changed

+9
-6
lines changed

8 files changed

+9
-6
lines changed

Cargo.lock

Lines changed: 2 additions & 2 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

binary-option/program/Cargo.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -16,7 +16,7 @@ spl-token = { version = "6.0", path = "../../token/program", features = [
1616
] }
1717
arrayref = "0.3.8"
1818
borsh = "1.5.1"
19-
uint = "0.9"
19+
uint = "0.10"
2020

2121
[lib]
2222
crate-type = ["cdylib", "lib"]

binary-oracle-pair/program/Cargo.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -18,7 +18,7 @@ spl-token = { version = "6.0", path = "../../token/program", features = [
1818
"no-entrypoint",
1919
] }
2020
thiserror = "1.0"
21-
uint = "0.9"
21+
uint = "0.10"
2222
borsh = "1.5.1"
2323

2424
[dev-dependencies]

libraries/math/Cargo.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -17,7 +17,7 @@ num-derive = "0.4"
1717
num-traits = "0.2"
1818
solana-program = "2.0.3"
1919
thiserror = "1.0"
20-
uint = "0.9"
20+
uint = "0.10"
2121

2222
[dev-dependencies]
2323
proptest = "1.5.0"

libraries/math/src/uint.rs

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -5,6 +5,7 @@
55
#![allow(clippy::assign_op_pattern)]
66
#![allow(clippy::ptr_offset_with_cast)]
77
#![allow(clippy::manual_range_contains)]
8+
#![allow(missing_docs)]
89

910
use uint::construct_uint;
1011

token-lending/program/Cargo.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -19,7 +19,7 @@ num-traits = "0.2"
1919
solana-program = "2.0.3"
2020
spl-token = { version = "6.0", path = "../../token/program", features = [ "no-entrypoint" ] }
2121
thiserror = "1.0"
22-
uint = "0.9"
22+
uint = "0.10"
2323

2424
[dev-dependencies]
2525
assert_matches = "1.5.0"

token-lending/program/src/math/decimal.rs

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -11,6 +11,7 @@
1111
#![allow(clippy::assign_op_pattern)]
1212
#![allow(clippy::ptr_offset_with_cast)]
1313
#![allow(clippy::manual_range_contains)]
14+
#![allow(missing_docs)]
1415

1516
use {
1617
crate::{

token-lending/program/src/math/rate.rs

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -17,6 +17,7 @@
1717
#![allow(clippy::ptr_offset_with_cast)]
1818
#![allow(clippy::reversed_empty_ranges)]
1919
#![allow(clippy::manual_range_contains)]
20+
#![allow(missing_docs)]
2021

2122
use {
2223
crate::{

0 commit comments

Comments
 (0)