chore: change how we depend on pallas

This commit is contained in:
rvcas
2024-01-24 21:26:48 -05:00
parent 9d563612f3
commit 589bb9a4b3
30 changed files with 163 additions and 152 deletions

View File

@@ -27,9 +27,7 @@ itertools = "0.10.5"
miette = { version = "5.9.0", features = ["fancy"] }
notify = "6.1.1"
owo-colors = { version = "3.5.0", features = ["supports-colors"] }
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
pallas.workspace = true
petgraph = "0.6.3"
pulldown-cmark = { version = "0.9.2", default-features = false }
rayon = "1.7.0"

View File

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

View File

@@ -35,8 +35,9 @@ use package_name::PackageName;
use pallas::ledger::{
addresses::{Address, Network, ShelleyAddress, ShelleyDelegationPart, StakePayload},
primitives::babbage::{self as cardano, PolicyId},
traverse::ComputeHash,
};
use pallas_traverse::ComputeHash;
use script::{EvalHint, EvalInfo, Script};
use std::{
collections::HashMap,