summaryrefslogtreecommitdiff
path: root/rust/scraper/Cargo.toml
blob: 990623dd284db37e818ca231807d3bdaf0f2598a (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
[package]
name = "scraper"
version = "0.1.0"
edition = "2021"

# See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html

[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" }
reqwest = { version = "0.11.11", features = ["json", "rustls-tls"] }
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"