Skip to content

Commit 20db9b8

Browse files
committed
fix: new version
1 parent e5ba012 commit 20db9b8

File tree

3 files changed

+4
-6
lines changed

3 files changed

+4
-6
lines changed

rust/rbac-registration/Cargo.toml

Lines changed: 2 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22
name = "rbac-registration"
33
description = "Role Based Access Control Registration"
44
keywords = ["cardano", "catalyst", "rbac registration"]
5-
version = "0.0.11"
5+
version = "0.0.12"
66
authors = [
77
"Arissara Chotivichit <[email protected]>"
88
]
@@ -33,7 +33,6 @@ oid-registry = "0.7.1"
3333
thiserror = "2.0.11"
3434

3535
c509-certificate = { version = "0.0.3", git = "https://github.com/input-output-hk/catalyst-libs.git", tag = "c509-certificate-v0.0.3" }
36-
cardano-chain-follower = { version = "0.0.15", git = "https://github.com/input-output-hk/catalyst-libs.git", tag = "cardano-chain-follower/v0.0.15" }
3736
cbork-utils = { version = "0.0.2", git = "https://github.com/input-output-hk/catalyst-libs.git", tag = "cbork-utils-v0.0.2" }
38-
cardano-blockchain-types = { version = "0.0.6", git = "https://github.com/input-output-hk/catalyst-libs.git", tag = "cardano-blockchain-types/v0.0.6" }
37+
cardano-blockchain-types = { version = "0.0.7", git = "https://github.com/input-output-hk/catalyst-libs.git", tag = "cardano-blockchain-types/v0.0.7" }
3938
catalyst-types = { version = "0.0.8", git = "https://github.com/input-output-hk/catalyst-libs.git", tag = "catalyst-types/v0.0.8" }

rust/rbac-registration/src/providers.rs

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -2,8 +2,7 @@
22
33
use std::future::Future;
44

5-
use cardano_blockchain_types::StakeAddress;
6-
use cardano_chain_follower::hashes::TransactionId;
5+
use cardano_blockchain_types::{hashes::TransactionId, StakeAddress};
76
use catalyst_types::catalyst_id::CatalystId;
87
use ed25519_dalek::VerifyingKey;
98

rust/rbac-registration/src/registration/cardano/validation.rs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@
33
use std::collections::{HashMap, HashSet};
44

55
use anyhow::{Context, Result};
6-
use cardano_chain_follower::{hashes::TransactionId, StakeAddress};
6+
use cardano_blockchain_types::{hashes::TransactionId, StakeAddress};
77
use catalyst_types::{
88
catalyst_id::{role_index::RoleId, CatalystId},
99
problem_report::ProblemReport,

0 commit comments

Comments
 (0)