build: grin_wallet dependency from main repo

This commit is contained in:
ardocrat 2024-04-24 11:36:36 +03:00
parent 61a963ac2b
commit a93b040b83
2 changed files with 11 additions and 11 deletions

12
Cargo.lock generated
View file

@ -2808,7 +2808,7 @@ dependencies = [
[[package]] [[package]]
name = "grin_wallet_api" name = "grin_wallet_api"
version = "5.2.0-beta.1" version = "5.2.0-beta.1"
source = "git+https://github.com/yeastplume/grin-wallet?branch=prevent_double_pay#6e6b16a61c53825447f27ad49ba654c922cf9702" source = "git+https://github.com/mimblewimble/grin-wallet?branch=master#297c8285321aaf7d1f7be6314fcf0fdc520753ee"
dependencies = [ dependencies = [
"base64 0.12.3", "base64 0.12.3",
"chrono", "chrono",
@ -2833,7 +2833,7 @@ dependencies = [
[[package]] [[package]]
name = "grin_wallet_config" name = "grin_wallet_config"
version = "5.2.0-beta.1" version = "5.2.0-beta.1"
source = "git+https://github.com/yeastplume/grin-wallet?branch=prevent_double_pay#6e6b16a61c53825447f27ad49ba654c922cf9702" source = "git+https://github.com/mimblewimble/grin-wallet?branch=master#297c8285321aaf7d1f7be6314fcf0fdc520753ee"
dependencies = [ dependencies = [
"dirs 2.0.2", "dirs 2.0.2",
"grin_core", "grin_core",
@ -2848,7 +2848,7 @@ dependencies = [
[[package]] [[package]]
name = "grin_wallet_controller" name = "grin_wallet_controller"
version = "5.2.0-beta.1" version = "5.2.0-beta.1"
source = "git+https://github.com/yeastplume/grin-wallet?branch=prevent_double_pay#6e6b16a61c53825447f27ad49ba654c922cf9702" source = "git+https://github.com/mimblewimble/grin-wallet?branch=master#297c8285321aaf7d1f7be6314fcf0fdc520753ee"
dependencies = [ dependencies = [
"chrono", "chrono",
"easy-jsonrpc-mw", "easy-jsonrpc-mw",
@ -2882,7 +2882,7 @@ dependencies = [
[[package]] [[package]]
name = "grin_wallet_impls" name = "grin_wallet_impls"
version = "5.2.0-beta.1" version = "5.2.0-beta.1"
source = "git+https://github.com/yeastplume/grin-wallet?branch=prevent_double_pay#6e6b16a61c53825447f27ad49ba654c922cf9702" source = "git+https://github.com/mimblewimble/grin-wallet?branch=master#297c8285321aaf7d1f7be6314fcf0fdc520753ee"
dependencies = [ dependencies = [
"base64 0.12.3", "base64 0.12.3",
"blake2-rfc", "blake2-rfc",
@ -2921,7 +2921,7 @@ dependencies = [
[[package]] [[package]]
name = "grin_wallet_libwallet" name = "grin_wallet_libwallet"
version = "5.2.0-beta.1" version = "5.2.0-beta.1"
source = "git+https://github.com/yeastplume/grin-wallet?branch=prevent_double_pay#6e6b16a61c53825447f27ad49ba654c922cf9702" source = "git+https://github.com/mimblewimble/grin-wallet?branch=master#297c8285321aaf7d1f7be6314fcf0fdc520753ee"
dependencies = [ dependencies = [
"age", "age",
"base64 0.9.3", "base64 0.9.3",
@ -2958,7 +2958,7 @@ dependencies = [
[[package]] [[package]]
name = "grin_wallet_util" name = "grin_wallet_util"
version = "5.2.0-beta.1" version = "5.2.0-beta.1"
source = "git+https://github.com/yeastplume/grin-wallet?branch=prevent_double_pay#6e6b16a61c53825447f27ad49ba654c922cf9702" source = "git+https://github.com/mimblewimble/grin-wallet?branch=master#297c8285321aaf7d1f7be6314fcf0fdc520753ee"
dependencies = [ dependencies = [
"data-encoding", "data-encoding",
"ed25519-dalek", "ed25519-dalek",

View file

@ -26,11 +26,11 @@ grin_keychain = { git = "https://github.com/mimblewimble/grin", branch = "master
grin_util = { git = "https://github.com/mimblewimble/grin", branch = "master" } grin_util = { git = "https://github.com/mimblewimble/grin", branch = "master" }
## wallet ## wallet
grin_wallet_impls = { git = "https://github.com/yeastplume/grin-wallet", branch = "prevent_double_pay" } grin_wallet_impls = { git = "https://github.com/mimblewimble/grin-wallet", branch = "master" }
grin_wallet_api = { git = "https://github.com/yeastplume/grin-wallet", branch = "prevent_double_pay" } grin_wallet_api = { git = "https://github.com/mimblewimble/grin-wallet", branch = "master" }
grin_wallet_libwallet = { git = "https://github.com/yeastplume/grin-wallet", branch = "prevent_double_pay" } grin_wallet_libwallet = { git = "https://github.com/mimblewimble/grin-wallet", branch = "master" }
grin_wallet_util = { git = "https://github.com/yeastplume/grin-wallet", branch = "prevent_double_pay" } grin_wallet_util = { git = "https://github.com/mimblewimble/grin-wallet", branch = "master" }
grin_wallet_controller = { git = "https://github.com/yeastplume/grin-wallet", branch = "prevent_double_pay" } grin_wallet_controller = { git = "https://github.com/mimblewimble/grin-wallet", branch = "master" }
## ui ## ui
egui = { version = "0.27.2", default-features = false } egui = { version = "0.27.2", default-features = false }