rs: Update outdated dependencies

This commit updates outdated dependencies and hangs all
bitcoin-related dependencies off of the `bitcoin` crate, using its
re-exports. This means that as long as the bitcoin crate matches, all
of its dependents will also match.

Changelog-None
This commit is contained in:
Christian Decker
2022-12-13 15:56:34 +01:00
parent 3b56e90a13
commit 8e75232205
10 changed files with 347 additions and 140 deletions

View File

@@ -16,12 +16,11 @@ bytes = "1.1.0"
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-util = { version = "0.7", features = ["codec"] }
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" }
env_logger = "0.9"
env_logger = "0.10"
[dev-dependencies]
tokio = { version = "1", features = ["macros", "rt-multi-thread", ] }