Bump pallas dependencies to include flat bigint patch

Fixes #796.
This commit is contained in:
KtorZ
2024-01-18 18:12:07 +01:00
parent 9f263c46f8
commit 0e2b8ae251
13 changed files with 787 additions and 720 deletions

View File

@@ -25,11 +25,11 @@ ignore = "0.4.20"
indexmap = "1.9.2"
itertools = "0.10.5"
miette = { version = "5.9.0", features = ["fancy"] }
minicbor = "0.19.1"
notify = "6.1.1"
owo-colors = { version = "3.5.0", features = ["supports-colors"] }
pallas = "0.20.0"
pallas-traverse = "0.20.0"
pallas = { git = "https://github.com/txpipe/pallas.git", rev = "7cb1ffe100befaa6236f14c14081961c44d6ad21" } # 0.21.0 patched
pallas-traverse = { git = "https://github.com/txpipe/pallas.git", rev = "7cb1ffe100befaa6236f14c14081961c44d6ad21" } # 0.21.0 patched
pallas-codec = { git = "https://github.com/txpipe/pallas.git", rev = "7cb1ffe100befaa6236f14c14081961c44d6ad21" } # 0.21.0 patched
petgraph = "0.6.3"
pulldown-cmark = { version = "0.9.2", default-features = false }
rayon = "1.7.0"

View File

@@ -4,8 +4,8 @@ use super::{
};
use aiken_lang::ast::Span;
use miette::{Diagnostic, NamedSource};
use minicbor as cbor;
use owo_colors::{OwoColorize, Stream::Stdout};
use pallas_codec::minicbor as cbor;
use std::fmt::Debug;
use uplc::ast::Constant;