Add a debug flag for uplc eval

This commit is contained in:
microproofs
2025-01-28 21:34:28 +07:00
committed by Lucas
parent f85d9460f6
commit c382e6fba8
13 changed files with 158 additions and 28 deletions

View File

@@ -30,7 +30,7 @@ patricia_tree = "0.8.0"
petgraph = "0.6.3"
pretty = "0.12.3"
serde = { version = "1.0.197", features = ["derive", "rc"] }
strum = "0.24.1"
strum = { version = "0.26.3", features = ["derive"] }
thiserror = "1.0.39"
uplc = { path = '../uplc', version = "1.1.10" }
vec1 = "1.10.1"

View File

@@ -12,9 +12,11 @@ use crate::{
},
IdGenerator,
};
use indexmap::IndexMap;
use std::{collections::HashMap, rc::Rc};
use strum::IntoEnumIterator;
use uplc::{
builder::{CONSTR_FIELDS_EXPOSER, CONSTR_INDEX_EXPOSER},
builtins::DefaultFunction,