Skip to content

Commit

Permalink
feat: aiken upgrade
Browse files Browse the repository at this point in the history
  • Loading branch information
matiwinnetou committed Aug 28, 2024
1 parent 27b82b5 commit a01f422
Show file tree
Hide file tree
Showing 3 changed files with 17 additions and 12 deletions.
24 changes: 12 additions & 12 deletions Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,30 +1,30 @@
[package]
name = "aiken-jna-wrapper"
version = "0.5.0"
version = "0.6.0"
authors = ["satran004", "matiwinnetou"]
edition = "2021"

# See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html

[lib]
crate-type = ["cdylib"]

[dependencies]
aiken = "1.0.19-alpha"
uplc = "1.0.19-alpha"
aiken-lang = "1.0.19-alpha"
#aiken = "1.0.31-alpha"
uplc = "1.0.31-alpha"
aiken-lang = "1.0.31-alpha"

pallas-addresses = "0.18.2"
pallas-codec = "0.18.2"
pallas-crypto = "0.18.2"
pallas-primitives = "0.18.2"
pallas-traverse = "0.18.2"
pallas-addresses = "0.30.1"
pallas-codec = { version = "0.30.1", features = ["num-bigint"] }
pallas-crypto = "0.30.1"
pallas-primitives = "0.30.1"
pallas-traverse = "0.30.1"

ffi-support = "0.4.4"
jni = "0.20.0"
hex = "0.4.3"

minicbor = "0.19.1"
serde = { version = "1.0.95", features = ["derive"] }
serde_json = { version = "1.0.95" }
serde = { version = "1.0.208", features = ["derive"] }
serde_json = { version = "1.0.127" }
anyhow = "1.0.75"

2 changes: 2 additions & 0 deletions src/lib.rs
Original file line number Diff line number Diff line change
@@ -1,4 +1,6 @@
extern crate core;
extern crate serde;
extern crate anyhow;

mod transaction;

Expand Down
3 changes: 3 additions & 0 deletions src/transaction.rs
Original file line number Diff line number Diff line change
@@ -1,3 +1,6 @@
extern crate uplc;
extern crate pallas_primitives;

use pallas_primitives::babbage::CostMdls;
use pallas_primitives::{
babbage::{TransactionInput, TransactionOutput},
Expand Down

0 comments on commit a01f422

Please sign in to comment.