# HG changeset patch # User Martin Habovstiak # Date 1606655088 -3600 # Node ID c9f42be465ca609fe49172bde06730d2bfa1a73c # Parent 4fb70ca820a676ca0cfc47babe009ac291301ada Decrease version requirement for serde This is what `electrs` uses. We could probably lower it more, I don't have the time to figure out how much right now. PRs welcome. diff -r 4fb70ca820a6 -r c9f42be465ca Cargo.toml --- a/Cargo.toml Sat Nov 28 15:47:47 2020 +0100 +++ b/Cargo.toml Sun Nov 29 14:04:48 2020 +0100 @@ -14,7 +14,7 @@ [dependencies] thiserror = "1.0.22" -serde_crate = { package = "serde", version = "1.0.117", optional = true, features = ["derive"] } +serde_crate = { package = "serde", version = "1.0.116", optional = true, features = ["derive"] } serde_str_helpers = { version = "0.1.2", optional = true } parse_arg = { version = "0.1.4", optional = true } lazy_static = "1.4.0"