X-Git-Url: http://git.bitcoin.ninja/index.cgi?a=blobdiff_plain;f=lightning-block-sync%2FCargo.toml;h=9d42968d866bc8edfe9cf27b87fc3afa7a8907b7;hb=14ee173593e6ee5501e10767ffa6ce1533a9bb2e;hp=69c64a14f1e3006cef97bd484ff28ab18c684e98;hpb=c5cc1ede2631fa85d7121c70981d27eb200a24e5;p=rust-lightning diff --git a/lightning-block-sync/Cargo.toml b/lightning-block-sync/Cargo.toml index 69c64a14..9d42968d 100644 --- a/lightning-block-sync/Cargo.toml +++ b/lightning-block-sync/Cargo.toml @@ -14,18 +14,17 @@ all-features = true rustdoc-args = ["--cfg", "docsrs"] [features] -rest-client = [ "serde", "serde_json", "chunked_transfer" ] -rpc-client = [ "serde", "serde_json", "chunked_transfer" ] +rest-client = [ "serde_json", "chunked_transfer" ] +rpc-client = [ "serde_json", "chunked_transfer" ] [dependencies] bitcoin = "0.29.0" lightning = { version = "0.0.114", path = "../lightning" } futures-util = { version = "0.3" } tokio = { version = "1.0", features = [ "io-util", "net", "time" ], optional = true } -serde = { version = "1.0", features = ["derive"], optional = true } serde_json = { version = "1.0", optional = true } chunked_transfer = { version = "1.4", optional = true } [dev-dependencies] lightning = { version = "0.0.114", path = "../lightning", features = ["_test_utils"] } -tokio = { version = "~1.14", features = [ "macros", "rt" ] } +tokio = { version = "1.14", features = [ "macros", "rt" ] }