cln-plugin: Fix plugin dependencies

This commit is contained in:
Christian Decker 2022-05-13 17:20:02 +02:00 committed by Rusty Russell
parent e586a61228
commit aa82a96034

View file

@ -17,12 +17,12 @@ log = { version = "0.4.14", features = ['std'] }
serde = { version = "1.0.131", features = ["derive"] }
serde_json = "1.0.72"
tokio-util = { version = "0.6.9", features = ["codec"] }
tokio = { version="1", features = ['io-std', 'rt', 'sync'] }
tokio-stream = "*"
tokio = { version="1", features = ['io-std', 'rt', 'sync', 'macros', 'io-util'] }
tokio-stream = "0.1"
futures = "0.3"
cln-rpc = { path = "../cln-rpc", version = "0.1.0" }
[dev-dependencies]
tokio = { version = "1", features = ["macros", "rt-multi-thread", ] }
env_logger = "*"
env_logger = "0.9"
cln-grpc = { path = "../cln-grpc" }