diff --git a/Cargo.lock b/Cargo.lock index a7fc0c0b5..9cad50300 100644 --- a/Cargo.lock +++ b/Cargo.lock @@ -1271,6 +1271,7 @@ dependencies = [ "tonic 0.8.3", "tonic-build 0.8.4", "tower 0.4.13", + "vls-protocol", ] [[package]] diff --git a/Cargo.toml b/Cargo.toml index 8bb56b4af..a21f7fae5 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -21,6 +21,13 @@ members = [ [workspace.dependencies] anyhow = "1" env_logger = "0.10" +cln-grpc = {git = "https://github.com/cdecker/lightning.git", tag = "gl-20231113" } +cln-rpc = {git = "https://github.com/cdecker/lightning.git", tag = "gl-20231113" } +vls-core = { git="https://gitlab.com/cdecker/vls", tag="snapshot-20230920" } +vls-persist = { git="https://gitlab.com/cdecker/vls", tag="snapshot-20230920" } +vls-protocol-signer = { git="https://gitlab.com/cdecker/vls", tag="snapshot-20230920" } +vls-protocol = { git="https://gitlab.com/cdecker/vls", tag="snapshot-20230920" } + # Config for 'cargo dist' [workspace.metadata.dist] diff --git a/libs/gl-client/Cargo.toml b/libs/gl-client/Cargo.toml index 5a3f02492..f8e2e7b89 100644 --- a/libs/gl-client/Cargo.toml +++ b/libs/gl-client/Cargo.toml @@ -39,10 +39,10 @@ tempfile = "3.3.0" url = "2.4.0" bitcoin = "^0" serde = { version = "1", features = [ "derive" ] } -vls-core = { git="https://gitlab.com/cdecker/vls", tag="snapshot-20230920" } -vls-persist = { git="https://gitlab.com/cdecker/vls", tag="snapshot-20230920" } -vls-protocol-signer = { git="https://gitlab.com/cdecker/vls", tag="snapshot-20230920" } -vls-protocol = { git="https://gitlab.com/cdecker/vls", tag="snapshot-20230920" } +vls-core = { workspace = true } +vls-persist = { workspace = true } +vls-protocol-signer = { workspace = true } +vls-protocol = { workspace = true } serde_json = "^1.0" thiserror = "1" cln-grpc = "^0.1" diff --git a/libs/gl-plugin/Cargo.toml b/libs/gl-plugin/Cargo.toml index 31ba310f4..0a2026574 100644 --- a/libs/gl-plugin/Cargo.toml +++ b/libs/gl-plugin/Cargo.toml @@ -19,8 +19,11 @@ anyhow = "*" async-stream = "*" bytes = { version = "1", features = ["serde"] } clightningrpc = "*" -cln-grpc = {git = "https://github.com/cdecker/lightning.git", tag = "gl-20231113", features = ["server"] } -cln-rpc = {git = "https://github.com/cdecker/lightning.git", tag = "gl-20231113"} +cln-grpc = { workspace = true, features = ["server"] } +cln-rpc = { workspace = true } +#cln-grpc = {git = "https://github.com/cdecker/lightning.git", tag = "gl-20231113", features = ["server"] } +#cln-rpc = {git = "https://github.com/cdecker/lightning.git", tag = "gl-20231113"} +vls-protocol = { workspace = true } cln-plugin = "^0.1" env_logger = "^0.7.0" futures = "0.3"