rs: Fix the manifests for publication

This commit is contained in:
Christian Decker 2023-10-17 18:51:57 +02:00
parent b6e2624970
commit 1621c6216f
2 changed files with 4 additions and 11 deletions

View File

@ -26,4 +26,4 @@ env_logger = "0.10"
[dev-dependencies]
tokio = { version = "1", features = ["macros", "rt-multi-thread", ] }
cln-grpc = { path = "../cln-grpc" }
cln-grpc = { version = "0.1", path = "../cln-grpc" }

View File

@ -12,16 +12,9 @@ anyhow = "1.0"
log = "0.4"
prost = "0.11"
rcgen = { version = "0.10", features = ["pem", "x509-parser"] }
[dependencies.cln-grpc]
path = "../../cln-grpc"
features = ["server"]
[dependencies.cln-plugin]
path = "../../plugins"
[dependencies.cln-rpc]
path = "../../cln-rpc"
cln-grpc = { version = "0.1", features = ["server"], path = "../../cln-grpc"}
cln-plugin = { version = "0.1", path = "../../plugins" }
cln-rpc = { version = "0.1", path = "../../cln-rpc" }
[dependencies.tokio]
features = ["net", "rt-multi-thread"]