summaryrefslogtreecommitdiff
path: root/rust/scraper/Cargo.toml
blob: 0e0ab404e33081eeff5cb642479d410ec01af133 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
[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]
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"] }
thiserror = "1.0.32"
tokio = { version = "1.20.1", features = ["full"] }

[dev-dependencies]
mockito = "0.31.0"