summaryrefslogtreecommitdiff
path: root/rust/scraper/Cargo.toml
blob: 4a13f01bcee8ddb8759fac68b4f0f6c0305a17fc (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
[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"
chrono = "0.4.21"
futures = "0.3.21"
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"] }

[dev-dependencies]
mockito = "0.31.0"