diff --git a/broker/Cargo.toml b/broker/Cargo.toml index 2702f8e..2f8618d 100644 --- a/broker/Cargo.toml +++ b/broker/Cargo.toml @@ -6,10 +6,10 @@ default-run = "sphinx-key-broker" # See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html [dependencies] -vls-protocol = { git = "https://gitlab.com/lightning-signer/validating-lightning-signer.git", branch = "2022-08-persist-reorg" } -vls-proxy = { git = "https://gitlab.com/lightning-signer/validating-lightning-signer.git", branch = "2022-08-persist-reorg" } -vls-frontend = { git = "https://gitlab.com/lightning-signer/validating-lightning-signer.git", branch = "2022-08-persist-reorg" } -vls-protocol-client = { git = "https://gitlab.com/lightning-signer/validating-lightning-signer.git", branch = "2022-08-persist-reorg" } +vls-protocol = { git = "https://gitlab.com/lightning-signer/validating-lightning-signer.git" } +vls-proxy = { git = "https://gitlab.com/lightning-signer/validating-lightning-signer.git" } +vls-frontend = { git = "https://gitlab.com/lightning-signer/validating-lightning-signer.git" } +vls-protocol-client = { git = "https://gitlab.com/lightning-signer/validating-lightning-signer.git" } rumqttd = { git = "https://github.com/Evanfeenstra/rumqtt", branch = "metrics" } pretty_env_logger = "0.4.0" confy = "0.4.0" diff --git a/parser/Cargo.toml b/parser/Cargo.toml index 195ebe8..a6c9c26 100644 --- a/parser/Cargo.toml +++ b/parser/Cargo.toml @@ -4,7 +4,7 @@ version = "0.1.0" edition = "2021" [dependencies] -vls-protocol = { git = "https://gitlab.com/lightning-signer/validating-lightning-signer.git", branch = "2022-08-persist-reorg" } +vls-protocol = { git = "https://gitlab.com/lightning-signer/validating-lightning-signer.git" } serde = { version = "1.0", default-features = false } serde_bolt = { version = "0.2", default-features = false } diff --git a/persister/Cargo.toml b/persister/Cargo.toml index 5f7d946..3f53d64 100644 --- a/persister/Cargo.toml +++ b/persister/Cargo.toml @@ -6,7 +6,7 @@ edition = "2021" # See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html [dependencies] -lightning-signer-server = { git = "https://gitlab.com/lightning-signer/validating-lightning-signer.git", branch = "2022-08-persist-reorg", default-features = false, features = ["persist", "secp-lowmemory"] } +lightning-signer-server = { git = "https://gitlab.com/lightning-signer/validating-lightning-signer.git", default-features = false, features = ["persist", "secp-lowmemory"] } serde = { version = "1.0.105" } hex = "0.4.3" fsdb = "0.1.11" diff --git a/signer/Cargo.toml b/signer/Cargo.toml index 36c446c..920d68c 100644 --- a/signer/Cargo.toml +++ b/signer/Cargo.toml @@ -7,7 +7,7 @@ edition = "2018" [dependencies] sphinx-key-parser = { path = "../parser" } sphinx-key-persister = { path = "../persister" } -vls-protocol-signer = { git = "https://gitlab.com/lightning-signer/validating-lightning-signer.git", branch = "2022-08-persist-reorg", default-features = false, features = ["std", "secp-lowmemory"] } +vls-protocol-signer = { git = "https://gitlab.com/lightning-signer/validating-lightning-signer.git", default-features = false, features = ["std", "secp-lowmemory"] } anyhow = {version = "1", features = ["backtrace"]} log = "0.4" rand = { version = "0.8" }