summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorDaniel Kahn Gillmor <dkg@fifthhorseman.net>2022-07-20 13:27:45 -0400
committerLars Wirzenius <liw@liw.fi>2022-07-21 04:11:27 +0000
commit992b394d3627f866b39f39c35c42d512c409beeb (patch)
tree238e18bccdb9639cedb92fb83922c16b8c72f674
parent178519e257c8b64a6a99cd8c10c94727ed42127e (diff)
sq: relax serde_json dependency to 1.0.80
This is the most conservative possible relaxation of the dependency, and it makes the tool buildable on debian stable, where serde_json is currently blocked by a confusing mess (https://bugs.debian.org/1015743) I suspect it could be relaxed even further (best would be serde_json = "1"), but i haven't tested it against serde 1.0.0, and this change is sufficient for my purposes for now.
-rw-r--r--sq/Cargo.toml2
1 files changed, 1 insertions, 1 deletions
diff --git a/sq/Cargo.toml b/sq/Cargo.toml
index dec36b47..0159386c 100644
--- a/sq/Cargo.toml
+++ b/sq/Cargo.toml
@@ -38,7 +38,7 @@ tempfile = "3.1"
term_size = "0.3"
tokio = { version = "1.13.1" }
rpassword = "5.0"
-serde_json = "1.0.81"
+serde_json = "1.0.80"
serde = { version = "1.0.137", features = ["derive"] }
[build-dependencies]