-
Notifications
You must be signed in to change notification settings - Fork 68
Expand file tree
/
Copy pathCargo.toml
More file actions
20 lines (18 loc) · 725 Bytes
/
Cargo.toml
File metadata and controls
20 lines (18 loc) · 725 Bytes
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"
authors = ["Anthony Nowell <anowell@gmail.com>"]
edition = "2021"
[dependencies]
serde_json = "1.0.61"
serde_yaml = "0.8.15"
serde = { version = "1.0", features = ["derive"] }
anyhow = "1.0.38"
reqwest = { version = "0.11.0", default-features = false, features = ["json", "gzip", "rustls-tls"] }
octocrab = { version = "0.8.10", default-features = false }
chrono = { version = "0.4", features = ["serde"] }
url = { version = "2.2.0", features = ["serde"] }
tokio = { version = "1.0", features = ["macros", "rt-multi-thread"] }
crates_io_api = { version = "0.7.0", default-features = false }
[features]
default = ["reqwest/rustls-tls", "crates_io_api/rustls", "octocrab/rustls"]