Skip to content

Commit

Permalink
check on the remove-deprecated-definition branch
Browse files Browse the repository at this point in the history
  • Loading branch information
Mr-Leshiy committed Oct 26, 2021
1 parent 90c5628 commit 3b37aa0
Show file tree
Hide file tree
Showing 10 changed files with 99 additions and 81 deletions.
58 changes: 38 additions & 20 deletions Cargo.lock

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

12 changes: 6 additions & 6 deletions jcli/Cargo.toml
Expand Up @@ -24,12 +24,12 @@ bech32 = "0.8"
hex = "0.4.2"
rayon = "1.5"
base64 = "0.13.0"
chain-core = { git = "https://github.com/input-output-hk/chain-libs.git", branch = "master" }
chain-impl-mockchain = { git = "https://github.com/input-output-hk/chain-libs.git", branch = "master" }
chain-addr = { git = "https://github.com/input-output-hk/chain-libs.git", branch = "master" }
chain-crypto = { git = "https://github.com/input-output-hk/chain-libs.git", branch = "master" }
chain-time = { git = "https://github.com/input-output-hk/chain-libs.git", branch = "master" }
chain-vote = { git = "https://github.com/input-output-hk/chain-libs.git", branch = "master" }
chain-core = { git = "https://github.com/input-output-hk/chain-libs.git", branch = "remove-deprecated-definition" }
chain-impl-mockchain = { git = "https://github.com/input-output-hk/chain-libs.git", branch = "remove-deprecated-definition" }
chain-addr = { git = "https://github.com/input-output-hk/chain-libs.git", branch = "remove-deprecated-definition" }
chain-crypto = { git = "https://github.com/input-output-hk/chain-libs.git", branch = "remove-deprecated-definition" }
chain-time = { git = "https://github.com/input-output-hk/chain-libs.git", branch = "remove-deprecated-definition" }
chain-vote = { git = "https://github.com/input-output-hk/chain-libs.git", branch = "remove-deprecated-definition" }
jormungandr-lib = { path = "../jormungandr-lib" }
gtmpl = "0.6.0"
ed25519-bip32 = "0.4"
Expand Down
22 changes: 11 additions & 11 deletions jormungandr-lib/Cargo.toml
Expand Up @@ -10,14 +10,14 @@ description = "Data structures and formats used by Jormungandr node API and conf
bincode = "1.3"
serde = { version = "1.0", features = ["derive"] }
serde_with = { version = "1.9", features = ["macros"] }
chain-impl-mockchain = { git = "https://github.com/input-output-hk/chain-libs.git", branch = "master" }
chain-addr = { git = "https://github.com/input-output-hk/chain-libs.git", branch = "master" }
chain-core = { git = "https://github.com/input-output-hk/chain-libs.git", branch = "master" }
chain-crypto = { git = "https://github.com/input-output-hk/chain-libs.git", branch = "master" }
chain-time = { git = "https://github.com/input-output-hk/chain-libs.git", branch = "master"}
chain-vote = { git = "https://github.com/input-output-hk/chain-libs.git", branch = "master" }
cardano-legacy-address = { git = "https://github.com/input-output-hk/chain-libs.git", branch = "master" }
typed-bytes = { git = "https://github.com/input-output-hk/chain-libs.git", branch = "master" }
chain-impl-mockchain = { git = "https://github.com/input-output-hk/chain-libs.git", branch = "remove-deprecated-definition" }
chain-addr = { git = "https://github.com/input-output-hk/chain-libs.git", branch = "remove-deprecated-definition" }
chain-core = { git = "https://github.com/input-output-hk/chain-libs.git", branch = "remove-deprecated-definition" }
chain-crypto = { git = "https://github.com/input-output-hk/chain-libs.git", branch = "remove-deprecated-definition" }
chain-time = { git = "https://github.com/input-output-hk/chain-libs.git", branch = "remove-deprecated-definition"}
chain-vote = { git = "https://github.com/input-output-hk/chain-libs.git", branch = "remove-deprecated-definition" }
cardano-legacy-address = { git = "https://github.com/input-output-hk/chain-libs.git", branch = "remove-deprecated-definition" }
typed-bytes = { git = "https://github.com/input-output-hk/chain-libs.git", branch = "remove-deprecated-definition" }
rand = "0.8"
rand_core = "0.6"
rand_chacha = "0.3"
Expand All @@ -36,9 +36,9 @@ quickcheck = "0.9"
quickcheck_macros = "0.9"
# FIXME required to work with quickcheck 0.9. Remove after migrating another crate or newer quickcheck
rand07 = { package = "rand", version = "0.7" }
chain-impl-mockchain = { git = "https://github.com/input-output-hk/chain-libs.git", branch = "master", features = [ "property-test-api" ] }
chain-addr = { git = "https://github.com/input-output-hk/chain-libs.git", branch = "master", features = [ "property-test-api" ] }
chain-crypto = { git = "https://github.com/input-output-hk/chain-libs.git", branch = "master", features = [ "property-test-api" ] }
chain-impl-mockchain = { git = "https://github.com/input-output-hk/chain-libs.git", branch = "remove-deprecated-definition", features = [ "property-test-api" ] }
chain-addr = { git = "https://github.com/input-output-hk/chain-libs.git", branch = "remove-deprecated-definition", features = [ "property-test-api" ] }
chain-crypto = { git = "https://github.com/input-output-hk/chain-libs.git", branch = "remove-deprecated-definition", features = [ "property-test-api" ] }
ed25519-bip32 = "0.4"
serde_yaml = "0.8"
serde_json = "1.0"
26 changes: 13 additions & 13 deletions jormungandr/Cargo.toml
Expand Up @@ -12,16 +12,16 @@ Midgard Serpent
edition = "2018"

[dependencies]
chain-addr = { git = "https://github.com/input-output-hk/chain-libs.git", branch = "master" }
chain-core = { git = "https://github.com/input-output-hk/chain-libs.git", branch = "master" }
chain-crypto = { git = "https://github.com/input-output-hk/chain-libs.git", branch = "master" }
chain-impl-mockchain = { git = "https://github.com/input-output-hk/chain-libs.git", branch = "master" }
chain-network = { git = "https://github.com/input-output-hk/chain-libs.git", branch = "master" }
chain-storage = { git = "https://github.com/input-output-hk/chain-libs.git", branch = "master" }
chain-time = { git = "https://github.com/input-output-hk/chain-libs.git", branch = "master" }
chain-vote = { git = "https://github.com/input-output-hk/chain-libs.git", branch = "master" }
cardano-legacy-address = { git = "https://github.com/input-output-hk/chain-libs.git", branch = "master" }
imhamt = { git = "https://github.com/input-output-hk/chain-libs.git", branch = "master" }
chain-addr = { git = "https://github.com/input-output-hk/chain-libs.git", branch = "remove-deprecated-definition" }
chain-core = { git = "https://github.com/input-output-hk/chain-libs.git", branch = "remove-deprecated-definition" }
chain-crypto = { git = "https://github.com/input-output-hk/chain-libs.git", branch = "remove-deprecated-definition" }
chain-impl-mockchain = { git = "https://github.com/input-output-hk/chain-libs.git", branch = "remove-deprecated-definition" }
chain-network = { git = "https://github.com/input-output-hk/chain-libs.git", branch = "remove-deprecated-definition" }
chain-storage = { git = "https://github.com/input-output-hk/chain-libs.git", branch = "remove-deprecated-definition" }
chain-time = { git = "https://github.com/input-output-hk/chain-libs.git", branch = "remove-deprecated-definition" }
chain-vote = { git = "https://github.com/input-output-hk/chain-libs.git", branch = "remove-deprecated-definition" }
cardano-legacy-address = { git = "https://github.com/input-output-hk/chain-libs.git", branch = "remove-deprecated-definition" }
imhamt = { git = "https://github.com/input-output-hk/chain-libs.git", branch = "remove-deprecated-definition" }

arc-swap = "^1.1.0"
async-trait = "0.1.51"
Expand Down Expand Up @@ -72,9 +72,9 @@ features = ["rustls-tls"]
tokio = { version = "^1.4", features = ["full"] }
quickcheck = "0.9"
quickcheck_macros = "0.9"
chain-impl-mockchain = { git = "https://github.com/input-output-hk/chain-libs.git", branch = "master", features = [ "property-test-api" ] }
chain-addr = { git = "https://github.com/input-output-hk/chain-libs.git", branch = "master", features = [ "property-test-api" ] }
chain-crypto = { git = "https://github.com/input-output-hk/chain-libs.git", branch = "master", features = [ "property-test-api" ] }
chain-impl-mockchain = { git = "https://github.com/input-output-hk/chain-libs.git", branch = "remove-deprecated-definition", features = [ "property-test-api" ] }
chain-addr = { git = "https://github.com/input-output-hk/chain-libs.git", branch = "remove-deprecated-definition", features = [ "property-test-api" ] }
chain-crypto = { git = "https://github.com/input-output-hk/chain-libs.git", branch = "remove-deprecated-definition", features = [ "property-test-api" ] }

[build-dependencies]
versionisator = "1.0.2"
Expand Down
4 changes: 2 additions & 2 deletions modules/blockchain/Cargo.toml
Expand Up @@ -5,7 +5,7 @@ authors = ["Nicolas Di Prima <nicolas.diprima@iohk.io>"]
edition = "2018"

[dependencies]
chain-impl-mockchain = { git = "https://github.com/input-output-hk/chain-libs.git", branch = "master" }
chain-time = { git = "https://github.com/input-output-hk/chain-libs.git", branch = "master"}
chain-impl-mockchain = { git = "https://github.com/input-output-hk/chain-libs.git", branch = "remove-deprecated-definition" }
chain-time = { git = "https://github.com/input-output-hk/chain-libs.git", branch = "remove-deprecated-definition"}
thiserror = "1.0.26"
lru = "0.6.6"
4 changes: 2 additions & 2 deletions testing/hersir/Cargo.toml
Expand Up @@ -7,8 +7,8 @@ edition = "2018"
# See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html

[dependencies]
chain-addr = { git = "https://github.com/input-output-hk/chain-libs.git", branch = "master", features = [ "property-test-api" ] }
chain-impl-mockchain = { git = "https://github.com/input-output-hk/chain-libs.git", branch = "master" }
chain-addr = { git = "https://github.com/input-output-hk/chain-libs.git", branch = "remove-deprecated-definition", features = [ "property-test-api" ] }
chain-impl-mockchain = { git = "https://github.com/input-output-hk/chain-libs.git", branch = "remove-deprecated-definition" }
jormungandr-testing-utils = { path = "../jormungandr-testing-utils" }
jormungandr-lib = { path = "../../jormungandr-lib" }
serde = "1.0"
Expand Down
12 changes: 6 additions & 6 deletions testing/jormungandr-integration-tests/Cargo.toml
Expand Up @@ -12,12 +12,12 @@ tokio = { version = "1.4", features = ["macros", "time"] }
futures = "0.3.14"
base64 = "0.13"
hex = "0.4.2"
chain-addr = { git = "https://github.com/input-output-hk/chain-libs.git", branch = "master" }
chain-core = { git = "https://github.com/input-output-hk/chain-libs.git", branch = "master" }
chain-crypto = { git = "https://github.com/input-output-hk/chain-libs.git", branch = "master" }
chain-impl-mockchain = { git = "https://github.com/input-output-hk/chain-libs.git", branch = "master" }
chain-time = { git = "https://github.com/input-output-hk/chain-libs.git", branch = "master" }
chain-vote = { git = "https://github.com/input-output-hk/chain-libs.git", branch = "master" }
chain-addr = { git = "https://github.com/input-output-hk/chain-libs.git", branch = "remove-deprecated-definition" }
chain-core = { git = "https://github.com/input-output-hk/chain-libs.git", branch = "remove-deprecated-definition" }
chain-crypto = { git = "https://github.com/input-output-hk/chain-libs.git", branch = "remove-deprecated-definition" }
chain-impl-mockchain = { git = "https://github.com/input-output-hk/chain-libs.git", branch = "remove-deprecated-definition" }
chain-time = { git = "https://github.com/input-output-hk/chain-libs.git", branch = "remove-deprecated-definition" }
chain-vote = { git = "https://github.com/input-output-hk/chain-libs.git", branch = "remove-deprecated-definition" }
jormungandr-lib = { path = "../../jormungandr-lib" }
jormungandr-testing-utils = { path = "../jormungandr-testing-utils" }
jortestkit = { git = "https://github.com/input-output-hk/jortestkit.git", branch = "master" }
Expand Down
10 changes: 5 additions & 5 deletions testing/jormungandr-scenario-tests/Cargo.toml
Expand Up @@ -11,11 +11,11 @@ default-run = "jormungandr-scenario-tests"
custom_debug = "0.5"
dialoguer = "0.8.0"
assert_fs = "1.0"
chain-core = { git = "https://github.com/input-output-hk/chain-libs.git", branch = "master" }
chain-crypto = { git = "https://github.com/input-output-hk/chain-libs.git", branch = "master", features = [ "property-test-api" ] }
chain-addr = { git = "https://github.com/input-output-hk/chain-libs.git", branch = "master", features = [ "property-test-api" ] }
chain-impl-mockchain = { git = "https://github.com/input-output-hk/chain-libs.git", branch = "master", features = [ "property-test-api" ] }
chain-time = { git = "https://github.com/input-output-hk/chain-libs.git", branch = "master" }
chain-core = { git = "https://github.com/input-output-hk/chain-libs.git", branch = "remove-deprecated-definition" }
chain-crypto = { git = "https://github.com/input-output-hk/chain-libs.git", branch = "remove-deprecated-definition", features = [ "property-test-api" ] }
chain-addr = { git = "https://github.com/input-output-hk/chain-libs.git", branch = "remove-deprecated-definition", features = [ "property-test-api" ] }
chain-impl-mockchain = { git = "https://github.com/input-output-hk/chain-libs.git", branch = "remove-deprecated-definition", features = [ "property-test-api" ] }
chain-time = { git = "https://github.com/input-output-hk/chain-libs.git", branch = "remove-deprecated-definition" }
jormungandr-testing-utils = { path = "../jormungandr-testing-utils" }
jormungandr-lib = { path = "../../jormungandr-lib" }
jortestkit = { git = "https://github.com/input-output-hk/jortestkit.git", branch = "master" }
Expand Down

0 comments on commit 3b37aa0

Please sign in to comment.