bump sphinx-rs

This commit is contained in:
Evan Feenstra
2023-07-30 09:38:17 -07:00
parent 34fac0bce5
commit e371c98463
4 changed files with 12 additions and 12 deletions

12
Cargo.lock generated
View File

@@ -1199,7 +1199,7 @@ checksum = "b06a4cde4c0f271a446782e3eff8de789548ce57dbc8eca9292c27f4a42004b4"
[[package]]
name = "lss-connector"
version = "0.1.0"
source = "git+https://github.com/stakwork/sphinx-rs.git?rev=ad9bc73bb85737d5e3b0beb32354a84e21ca3444#ad9bc73bb85737d5e3b0beb32354a84e21ca3444"
source = "git+https://github.com/stakwork/sphinx-rs.git?rev=150f592d67e25358367b921c52cd7b3bcccc40d3#150f592d67e25358367b921c52cd7b3bcccc40d3"
dependencies = [
"anyhow",
"log",
@@ -1571,7 +1571,7 @@ dependencies = [
[[package]]
name = "rmp-utils"
version = "0.1.0"
source = "git+https://github.com/stakwork/sphinx-rs.git?rev=ad9bc73bb85737d5e3b0beb32354a84e21ca3444#ad9bc73bb85737d5e3b0beb32354a84e21ca3444"
source = "git+https://github.com/stakwork/sphinx-rs.git?rev=150f592d67e25358367b921c52cd7b3bcccc40d3#150f592d67e25358367b921c52cd7b3bcccc40d3"
dependencies = [
"anyhow",
"log",
@@ -1778,7 +1778,7 @@ dependencies = [
[[package]]
name = "sphinx-auther"
version = "0.1.12"
source = "git+https://github.com/stakwork/sphinx-rs.git?rev=ad9bc73bb85737d5e3b0beb32354a84e21ca3444#ad9bc73bb85737d5e3b0beb32354a84e21ca3444"
source = "git+https://github.com/stakwork/sphinx-rs.git?rev=150f592d67e25358367b921c52cd7b3bcccc40d3#150f592d67e25358367b921c52cd7b3bcccc40d3"
dependencies = [
"anyhow",
"base64 0.21.2",
@@ -1790,7 +1790,7 @@ dependencies = [
[[package]]
name = "sphinx-crypter"
version = "0.1.0"
source = "git+https://github.com/stakwork/sphinx-rs.git?rev=ad9bc73bb85737d5e3b0beb32354a84e21ca3444#ad9bc73bb85737d5e3b0beb32354a84e21ca3444"
source = "git+https://github.com/stakwork/sphinx-rs.git?rev=150f592d67e25358367b921c52cd7b3bcccc40d3#150f592d67e25358367b921c52cd7b3bcccc40d3"
dependencies = [
"anyhow",
"chacha20poly1305",
@@ -1801,7 +1801,7 @@ dependencies = [
[[package]]
name = "sphinx-glyph"
version = "0.1.2"
source = "git+https://github.com/stakwork/sphinx-rs.git?rev=ad9bc73bb85737d5e3b0beb32354a84e21ca3444#ad9bc73bb85737d5e3b0beb32354a84e21ca3444"
source = "git+https://github.com/stakwork/sphinx-rs.git?rev=150f592d67e25358367b921c52cd7b3bcccc40d3#150f592d67e25358367b921c52cd7b3bcccc40d3"
dependencies = [
"anyhow",
"hex",
@@ -1852,7 +1852,7 @@ dependencies = [
[[package]]
name = "sphinx-signer"
version = "0.1.0"
source = "git+https://github.com/stakwork/sphinx-rs.git?rev=ad9bc73bb85737d5e3b0beb32354a84e21ca3444#ad9bc73bb85737d5e3b0beb32354a84e21ca3444"
source = "git+https://github.com/stakwork/sphinx-rs.git?rev=150f592d67e25358367b921c52cd7b3bcccc40d3#150f592d67e25358367b921c52cd7b3bcccc40d3"
dependencies = [
"anyhow",
"bip39",

View File

@@ -39,8 +39,8 @@ vls-proxy = { git = "https://gitlab.com/lightning-signer/validating-li
# vls-protocol-client = { path = "../../vls/vls-protocol-client" }
# vls-proxy = { path = "../../vls/vls-proxy" }
lss-connector = { git = "https://github.com/stakwork/sphinx-rs", rev = "ad9bc73bb85737d5e3b0beb32354a84e21ca3444" }
sphinx-signer = { git = "https://github.com/stakwork/sphinx-rs", rev = "ad9bc73bb85737d5e3b0beb32354a84e21ca3444" }
lss-connector = { git = "https://github.com/stakwork/sphinx-rs", rev = "150f592d67e25358367b921c52cd7b3bcccc40d3" }
sphinx-signer = { git = "https://github.com/stakwork/sphinx-rs", rev = "150f592d67e25358367b921c52cd7b3bcccc40d3" }
# lss-connector = { path = "../../sphinx-rs/lss-connector" }
# sphinx-signer = { path = "../../sphinx-rs/signer" }

View File

@@ -18,11 +18,11 @@ serde_json = { version = "1.0.81", default-features = false }
serde_urlencoded = "0.7.1"
url = "2"
lss-connector = { git = "https://github.com/stakwork/sphinx-rs.git", default-features = false, rev = "ad9bc73bb85737d5e3b0beb32354a84e21ca3444" }
lss-connector = { git = "https://github.com/stakwork/sphinx-rs.git", default-features = false, rev = "150f592d67e25358367b921c52cd7b3bcccc40d3" }
# lss-connector = { path = "../../sphinx-rs/lss-connector", default-features = false }
sphinx-crypter = { git = "https://github.com/stakwork/sphinx-rs.git", rev = "ad9bc73bb85737d5e3b0beb32354a84e21ca3444" }
sphinx-crypter = { git = "https://github.com/stakwork/sphinx-rs.git", rev = "150f592d67e25358367b921c52cd7b3bcccc40d3" }
# sphinx-crypter = { path = "../../sphinx-rs/crypter" }
sphinx-signer = { git = "https://github.com/stakwork/sphinx-rs.git", optional = true, rev = "ad9bc73bb85737d5e3b0beb32354a84e21ca3444" }
sphinx-signer = { git = "https://github.com/stakwork/sphinx-rs.git", optional = true, rev = "150f592d67e25358367b921c52cd7b3bcccc40d3" }
# sphinx-signer = { path = "../../sphinx-rs/signer", optional = true }
anyhow.workspace = true

View File

@@ -121,8 +121,8 @@ pub fn make_event_loop(
seed,
network,
policy.clone(),
velocity.clone(),
initial_allowlist,
velocity.clone(),
persister,
)
.expect("failed to init signer");