Removed reliance on cosmrs fork (#943)

* Removed reliance on cosmrs fork

* Removed the accidental optional flag on cosmrs import in the wallet
This commit is contained in:
Jędrzej Stuczyński
2021-12-07 11:04:32 +00:00
committed by GitHub
parent a2324f98f8
commit aec0239d87
4 changed files with 6 additions and 6 deletions
Generated
+2 -2
View File
@@ -868,7 +868,7 @@ dependencies = [
[[package]]
name = "cosmos-sdk-proto"
version = "0.8.0"
source = "git+https://github.com/jstuczyn/cosmos-rust/?branch=jstuczyn/wasmd-021-update#d8b23881ca833bf9b3284142c4f90b588afc56e3"
source = "git+https://github.com/cosmos/cosmos-rust?rev=e5a1872083abb3d88fa62dda966e7f5408deba58#e5a1872083abb3d88fa62dda966e7f5408deba58"
dependencies = [
"prost",
"prost-types",
@@ -878,7 +878,7 @@ dependencies = [
[[package]]
name = "cosmrs"
version = "0.3.0"
source = "git+https://github.com/jstuczyn/cosmos-rust/?branch=jstuczyn/wasmd-021-update#d8b23881ca833bf9b3284142c4f90b588afc56e3"
source = "git+https://github.com/cosmos/cosmos-rust?rev=e5a1872083abb3d88fa62dda966e7f5408deba58#e5a1872083abb3d88fa62dda966e7f5408deba58"
dependencies = [
"bip32",
"cosmos-sdk-proto",
@@ -27,7 +27,7 @@ async-trait = { version = "0.1.51", optional = true }
bip39 = { version = "1", features = ["rand"], optional = true }
config = { path = "../../config", optional = true }
#cosmrs = { version = "0.3", features = ["rpc", "bip32", "cosmwasm"], optional = true }
cosmrs = { git = "https://github.com/jstuczyn/cosmos-rust/", branch="jstuczyn/wasmd-021-update", features = ["rpc", "bip32", "cosmwasm"], optional = true }
cosmrs = { git = "https://github.com/cosmos/cosmos-rust", rev="e5a1872083abb3d88fa62dda966e7f5408deba58", features = ["rpc", "bip32", "cosmwasm"], optional = true }
prost = { version = "0.9", default-features = false, optional = true }
flate2 = { version = "1.0.20", optional = true }
sha2 = { version = "0.9.5", optional = true }
+2 -2
View File
@@ -665,7 +665,7 @@ dependencies = [
[[package]]
name = "cosmos-sdk-proto"
version = "0.8.0"
source = "git+https://github.com/jstuczyn/cosmos-rust/?branch=jstuczyn/wasmd-021-update#a3dbc2b28fc0c117c894df478799dea9f7fbd186"
source = "git+https://github.com/cosmos/cosmos-rust?rev=e5a1872083abb3d88fa62dda966e7f5408deba58#e5a1872083abb3d88fa62dda966e7f5408deba58"
dependencies = [
"prost",
"prost-types",
@@ -675,7 +675,7 @@ dependencies = [
[[package]]
name = "cosmrs"
version = "0.3.0"
source = "git+https://github.com/jstuczyn/cosmos-rust/?branch=jstuczyn/wasmd-021-update#a3dbc2b28fc0c117c894df478799dea9f7fbd186"
source = "git+https://github.com/cosmos/cosmos-rust?rev=e5a1872083abb3d88fa62dda966e7f5408deba58#e5a1872083abb3d88fa62dda966e7f5408deba58"
dependencies = [
"bip32",
"cosmos-sdk-proto",
+1 -1
View File
@@ -28,7 +28,7 @@ url = "2.0"
rand = "0.6.5"
cosmrs = { git = "https://github.com/jstuczyn/cosmos-rust/", branch="jstuczyn/wasmd-021-update", features = ["rpc", "bip32", "cosmwasm"] }
cosmrs = { git = "https://github.com/cosmos/cosmos-rust", rev="e5a1872083abb3d88fa62dda966e7f5408deba58", features = ["rpc", "bip32", "cosmwasm"] }
cosmwasm-std = "1.0.0-beta2"
validator-client = { path = "../../common/client-libs/validator-client", features = [