Skip to content

Commit

Permalink
dcou: Update qualifier_attr to 0.2.2 (#32838)
Browse files Browse the repository at this point in the history
Update qualifier_attr to 0.2.2
  • Loading branch information
ryoqun authored Aug 15, 2023
1 parent 84b0fd8 commit e700dde
Show file tree
Hide file tree
Showing 4 changed files with 8 additions and 8 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 Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -259,7 +259,7 @@ prost = "0.11.9"
prost-types = "0.11.9"
protobuf-src = "1.1.0"
qstring = "0.7.2"
qualifier_attr = "0.1.6"
qualifier_attr = { version = "0.2.2", default-features = false }
quinn = "0.10.2"
quinn-proto = "0.10.2"
quote = "1.0"
Expand Down
6 changes: 3 additions & 3 deletions accounts-db/src/accounts_db.rs
Original file line number Diff line number Diff line change
Expand Up @@ -19,7 +19,7 @@
//! commit for each slot entry would be indexed.

#[cfg(feature = "dev-context-only-utils")]
use qualifier_attr::fn_qualifiers;
use qualifier_attr::qualifiers;
use {
crate::{
account_info::{AccountInfo, StorageLocation},
Expand Down Expand Up @@ -7476,7 +7476,7 @@ impl AccountsDb {
/// Set the accounts hash for `slot`
///
/// returns the previous accounts hash for `slot`
#[cfg_attr(feature = "dev-context-only-utils", fn_qualifiers(pub))]
#[cfg_attr(feature = "dev-context-only-utils", qualifiers(pub))]
fn set_accounts_hash(
&self,
slot: Slot,
Expand Down Expand Up @@ -7977,7 +7977,7 @@ impl AccountsDb {
/// Set the accounts delta hash for `slot` in the `accounts_delta_hashes` map
///
/// returns the previous accounts delta hash for `slot`
#[cfg_attr(feature = "dev-context-only-utils", fn_qualifiers(pub))]
#[cfg_attr(feature = "dev-context-only-utils", qualifiers(pub))]
fn set_accounts_delta_hash(
&self,
slot: Slot,
Expand Down
4 changes: 2 additions & 2 deletions programs/sbf/Cargo.lock

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

0 comments on commit e700dde

Please sign in to comment.