fix(applying): define specific dependency versions
This commit is contained in:
parent
bae2f48591
commit
97f1eb011c
2 changed files with 5 additions and 6 deletions
1
.github/workflows/release.yml
vendored
1
.github/workflows/release.yml
vendored
|
|
@ -33,7 +33,6 @@ jobs:
|
||||||
|
|
||||||
github_release:
|
github_release:
|
||||||
name: Create GitHub Release
|
name: Create GitHub Release
|
||||||
needs: [cargo_publish]
|
|
||||||
runs-on: ubuntu-latest
|
runs-on: ubuntu-latest
|
||||||
steps:
|
steps:
|
||||||
- name: Checkout
|
- name: Checkout
|
||||||
|
|
|
||||||
|
|
@ -13,11 +13,11 @@ authors = ["Maico Leberle <maico.leberle@gmail.com>"]
|
||||||
doctest = false
|
doctest = false
|
||||||
|
|
||||||
[dependencies]
|
[dependencies]
|
||||||
pallas-addresses = { path = "../pallas-addresses" }
|
pallas-addresses = { version = "=0.20.0", path = "../pallas-addresses" }
|
||||||
pallas-codec = { path = "../pallas-codec" }
|
pallas-codec = { version = "=0.20.0", path = "../pallas-codec" }
|
||||||
pallas-crypto = { path = "../pallas-crypto" }
|
pallas-crypto = { version = "=0.20.0", path = "../pallas-crypto" }
|
||||||
pallas-primitives = { path = "../pallas-primitives" }
|
pallas-primitives = { version = "=0.20.0", path = "../pallas-primitives" }
|
||||||
pallas-traverse = { path = "../pallas-traverse" }
|
pallas-traverse = { version = "=0.20.0", path = "../pallas-traverse" }
|
||||||
rand = "0.8"
|
rand = "0.8"
|
||||||
|
|
||||||
[dev-dependencies]
|
[dev-dependencies]
|
||||||
|
|
|
||||||
Loading…
Add table
Add a link
Reference in a new issue