Skip to content

Commit

Permalink
Fix dependencies
Browse files Browse the repository at this point in the history
  • Loading branch information
gostkin committed Mar 21, 2023
1 parent 8fb1a8a commit 32dfbd9
Show file tree
Hide file tree
Showing 4 changed files with 17 additions and 17 deletions.
16 changes: 8 additions & 8 deletions blockchain-source/Cargo.toml
Expand Up @@ -12,14 +12,14 @@ multiverse = { path = "../multiverse" }

anyhow = { version = "1" }
async-trait = { version = "0.1.57" }
serde = { version = "1.0.144" }
thiserror = { version = "1.0" }

cardano-net = "0.2.1"
cardano-sdk = "0.2.5"
cardano-net = { version = "0.2.1" }
cardano-sdk = { version = "0.2.4" }
cbored = { version = "0.3.3" }
cbored-derive = { version = "0.3.1" }
cryptoxide = { version = "0.4.2" }
hex = { version = "0.4.3" }
serde = { version = "1.0.144" }
tokio = { version = "1", features = [ "full" ] }
thiserror = { version = "1.0" }
tracing = { version = "0.1" }
cbored = "0.3.3"
cbored-derive = "0.3.1"
cryptoxide = "0.4.2"
hex = "0.4.3"
6 changes: 3 additions & 3 deletions cardano-utils/Cargo.toml
Expand Up @@ -11,8 +11,8 @@ dcspark-core = { version = "0.1.0", path = "../core" }

anyhow = { version = "1" }
bech32 = { version = "0.9" }
cardano-multiplatform-lib = { git = "https://github.com/dcSpark/cardano-multiplatform-lib.git", branch = "egostkin/utxo-selection-changes", commit = "a41264b88c9b48ac890c2d046fe916f224fccabb" }
cryptoxide = "0.4.2"
cryptoxide = { version = "0.4.2" }
cardano-multiplatform-lib = { git = "https://github.com/dcSpark/cardano-multiplatform-lib.git", rev = "a41264b88c9b48ac890c2d046fe916f224fccabb" }
hex = { version = "0.4" }
rand = "0.8.5"
rand = { version = "0.8.5" }
serde = { version = "1.0.144", features = ["derive", "rc" ] }
10 changes: 5 additions & 5 deletions core/Cargo.toml
Expand Up @@ -11,17 +11,17 @@ deps = { version = "0.1.0", path = "../deps" }

anyhow = { version = "1.0" }
bech32 = { version = "0.9" }
cardano-multiplatform-lib = { git = "https://github.com/dcSpark/cardano-multiplatform-lib.git", rev = "a41264b88c9b48ac890c2d046fe916f224fccabb" }
cryptoxide = {version = "0.4.2" }
cardano-multiplatform-lib = { git = "https://github.com/dcSpark/cardano-multiplatform-lib.git", branch = "egostkin/utxo-selection-changes", commit = "a41264b88c9b48ac890c2d046fe916f224fccabb" }
hex = { version = "0.4" }
imbl = { version = "2.0" }
rand = { version = "0.8.5" }
serde = { version = "1.0.144", features = ["derive", "rc" ] }
thiserror = { version = "1.0" }
rand = "0.8.5"

[dev-dependencies]
smoke = { version = "0.3" }
smoke-macros = { version = '0.1'}
clap = { version = "3.2", features = [ "derive", "env" ] }
quickcheck = { version = "1" }
serde_json = "1.0"
serde_json = { version = "1.0" }
smoke = { version = "0.3" }
smoke-macros = { version = '0.1' }
2 changes: 1 addition & 1 deletion utxo-selection/Cargo.toml
Expand Up @@ -11,7 +11,7 @@ dcspark-core = { version = "0.1.0", path = "../core" }
cardano-utils = { version = "0.1.0", path = "../cardano-utils" }

anyhow = {version = "1.0"}
cardano-multiplatform-lib = { git = "https://github.com/dcSpark/cardano-multiplatform-lib.git", branch = "egostkin/utxo-selection-changes", commit = "a41264b88c9b48ac890c2d046fe916f224fccabb" }
cardano-multiplatform-lib = { git = "https://github.com/dcSpark/cardano-multiplatform-lib.git", rev = "a41264b88c9b48ac890c2d046fe916f224fccabb" }
hex = { version = "0.4" }
rand = "0.8.5"
serde = { version = "1.0.144", features = ["derive", "rc" ] }

0 comments on commit 32dfbd9

Please sign in to comment.