Skip to content

Commit fe42df6

Browse files
authored
feat(rust/cardano-blockchain-types): Hash trait impl for Cip0134Uri type (#639)
* add needed Hash trait impl for `Cip0134Uri` type * fix fmt
1 parent 2ee558f commit fe42df6

File tree

2 files changed

+2
-2
lines changed

2 files changed

+2
-2
lines changed

rust/cardano-blockchain-types/Cargo.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22
name = "cardano-blockchain-types"
33
description = "Common Cardano Blockchain data types for use in both applications and crates"
44
keywords = ["cardano", "catalyst", ]
5-
version = "0.0.8"
5+
version = "0.0.9"
66
authors = [
77
"Steven Johnson <[email protected]>"
88
]

rust/cardano-blockchain-types/src/cip134_uri.rs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -13,7 +13,7 @@ use pallas_addresses::Address;
1313
/// See the [proposal] for more details.
1414
///
1515
/// [proposal]: https://github.com/cardano-foundation/CIPs/pull/888
16-
#[derive(Debug, Clone, Eq, PartialEq)]
16+
#[derive(Debug, Clone, Eq, PartialEq, Hash)]
1717
#[allow(clippy::module_name_repetitions)]
1818
pub struct Cip0134Uri {
1919
/// A URI string.

0 commit comments

Comments
 (0)