add live progress display to complement wrapper

Added the `derive` feature to the workspace serde dependency here.
Previously, the dependency was only used in the main package, which
ended up enabling the `derive` feature through transitive serde
dependencies. This is not the case for xtask, so we need to enable it
explicitly.
This commit is contained in:
Benjamin Lee 2024-06-21 00:17:06 -07:00
parent ef6eb27b9b
commit e4e224f5dc
No known key found for this signature in database
GPG key ID: FB9624E2885D55A4
5 changed files with 277 additions and 8 deletions

View file

@ -97,6 +97,7 @@ http-body-util = "0.1.2"
hyper = "1.4.1"
hyper-util = { version = "0.1.8", features = ["client", "client-legacy", "service"] }
image = { version = "0.25.2", default-features = false, features = ["jpeg", "png", "gif"] }
indicatif = "0.17.8"
jsonwebtoken = "9.3.0"
lru-cache = "0.1.2"
miette = { version = "7.2.0", features = ["fancy"] }
@ -120,7 +121,7 @@ ruma = { git = "https://github.com/ruma/ruma", branch = "main", features = ["com
rusqlite = { version = "0.32.1", features = ["bundled"] }
rustls = { version = "0.23.13", default-features = false, features = ["ring", "log", "logging", "std", "tls12"] }
sd-notify = { version = "0.4.2" }
serde = { version = "1.0.210", features = ["rc"] }
serde = { version = "1.0.210", features = ["rc", "derive"] }
serde_html_form = "0.2.6"
serde_json = { version = "1.0.128", features = ["raw_value"] }
serde_yaml = "0.9.34"