poop-graph/Cargo.toml

28 lines
777 B
TOML
Raw Normal View History

2022-04-05 14:07:28 -04:00
[package]
name = "poop-graph"
2022-12-09 17:45:02 -05:00
version = "0.1.1"
2022-04-05 14:07:28 -04:00
edition = "2021"
2022-04-05 18:21:33 -04:00
authors = ["xenofem <xenofem@xeno.science>"]
2022-04-15 18:11:17 -04:00
license = "MIT"
2022-04-05 14:07:28 -04:00
# See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html
[dependencies]
2022-04-06 18:46:17 -04:00
actix-files = "0.6.0"
actix-web = "4.0.1"
2022-04-05 18:21:33 -04:00
bytes = "1.1"
futures = "0.3"
2022-04-05 14:07:28 -04:00
lazy_static = "1.4"
2022-04-16 00:03:09 -04:00
log = "0.4.16"
2023-03-31 17:29:42 -04:00
pdf = "0.8"
2022-04-05 14:07:28 -04:00
regex = "1.5.5"
2022-04-05 18:21:33 -04:00
reqwest = { version = "0.11", features = ["rustls-tls", "stream"], default-features = false }
scraper = "0.12"
simple_logger = { version = "4.2", features = ["stderr"] }
2022-04-05 18:21:33 -04:00
thiserror = "1"
2022-04-05 14:07:28 -04:00
time = { version = "0.3.9", features = ["formatting", "macros", "parsing"] }
2022-04-05 18:21:33 -04:00
tokio = { version = "1", features = ["full"] }
2022-04-06 18:46:17 -04:00
tokio-stream = "0.1.8"
2022-04-05 18:21:33 -04:00
tokio-util = { version = "0.7", features = ["codec"] }
url = "2.2.2"