diff options
Diffstat (limited to 'rust/scraper/Cargo.toml')
-rw-r--r-- | rust/scraper/Cargo.toml | 4 |
1 files changed, 4 insertions, 0 deletions
diff --git a/rust/scraper/Cargo.toml b/rust/scraper/Cargo.toml index 4a13f01..990623d 100644 --- a/rust/scraper/Cargo.toml +++ b/rust/scraper/Cargo.toml @@ -7,8 +7,10 @@ edition = "2021" [dependencies] async-trait = "0.1.57" +backoff = { version = "0.4.0", features = ["tokio"] } chrono = "0.4.21" futures = "0.3.21" +lapin = "2.1.1" parking_lot = "0.12.1" pbjson-types = "0.4.0" proto = { path = "../proto" } @@ -17,6 +19,8 @@ serde = { version = "1.0.143", features = ["derive"] } sqlx = { version = "0.6.1", features = ["runtime-tokio-rustls", "postgres", "chrono"] } thiserror = "1.0.32" tokio = { version = "1.20.1", features = ["full"] } +tracing = "0.1" +tracing-subscriber = "0.3.15" [dev-dependencies] mockito = "0.31.0" |