Add thiserror to plume-common dependencies

This commit is contained in:
Kitaiti Makoto 2023-01-15 08:38:55 +09:00
parent 83c628d490
commit 83ed168f9c
2 changed files with 2 additions and 0 deletions

1
Cargo.lock generated
View File

@ -3361,6 +3361,7 @@ dependencies = [
"serde_json", "serde_json",
"shrinkwraprs", "shrinkwraprs",
"syntect", "syntect",
"thiserror",
"tokio 1.24.1", "tokio 1.24.1",
"tracing", "tracing",
"url 2.3.1", "url 2.3.1",

View File

@ -26,6 +26,7 @@ flume = "0.10.13"
tokio = { version = "1.19.2", features = ["full"] } tokio = { version = "1.19.2", features = ["full"] }
futures = "0.3.25" futures = "0.3.25"
anyhow = "1.0.68" anyhow = "1.0.68"
thiserror = "1.0.38"
[dependencies.chrono] [dependencies.chrono]
features = ["serde"] features = ["serde"]