Skip to content
Merged
Show file tree
Hide file tree
Changes from 1 commit
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion rust/cardano-blockchain-types/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@
name = "cardano-blockchain-types"
description = "Common Cardano Blockchain data types for use in both applications and crates"
keywords = ["cardano", "catalyst", ]
version = "0.0.8"
version = "0.0.9"
authors = [
"Steven Johnson <[email protected]>"
]
Expand Down
4 changes: 2 additions & 2 deletions rust/cardano-blockchain-types/src/cip134_uri.rs
Original file line number Diff line number Diff line change
Expand Up @@ -5,15 +5,15 @@

use std::fmt::{Display, Formatter};

use anyhow::{Context, Error, Result, anyhow};
use anyhow::{anyhow, Context, Error, Result};
use pallas_addresses::Address;

/// A URI in the CIP-0134 format.
///
/// See the [proposal] for more details.
///
/// [proposal]: https://github.com/cardano-foundation/CIPs/pull/888
#[derive(Debug, Clone, Eq, PartialEq)]
#[derive(Debug, Clone, Eq, PartialEq, Hash)]
#[allow(clippy::module_name_repetitions)]
pub struct Cip0134Uri {
/// A URI string.
Expand Down
Loading