Run formatter across the codebase (rust 1.84.1)

Signed-off-by: KtorZ <5680256+KtorZ@users.noreply.github.com>
This commit is contained in:
KtorZ
2025-02-08 15:00:55 +01:00
parent 774a249cd6
commit 55cc1b932e
4 changed files with 10 additions and 6 deletions

View File

@@ -1,11 +1,11 @@
use crate::{
Annotated, Schema,
blueprint::{
parameter::Parameter,
schema::{Data, Declaration, Items},
},
Annotated, Schema,
};
use aiken_lang::tipo::{Type, TypeAliasAnnotation, TypeVar, pretty::resolve_alias};
use aiken_lang::tipo::{pretty::resolve_alias, Type, TypeAliasAnnotation, TypeVar};
use itertools::Itertools;
use serde::{
self,

View File

@@ -5,8 +5,8 @@ use super::{
};
use std::{iter, ops::Deref};
use uplc::{
PlutusData,
ast::{Constant, Data as UplcData},
PlutusData,
};
#[derive(Debug, PartialEq, Eq, Clone, serde::Serialize, serde::Deserialize)]

View File

@@ -1117,7 +1117,7 @@ Here's the types I followed and that led me to this problem:
pub mod tests {
use super::*;
use proptest::prelude::*;
use serde_json::{self, Value, json};
use serde_json::{self, json, Value};
pub fn assert_json(schema: &impl Serialize, expected: Value) {
assert_eq!(serde_json::to_value(schema).unwrap(), expected);