blob: 5aa51841d7c8f622616d7392ca261307621608ed (
plain) (
blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
|
[package]
name = "indexer"
version = "0.1.0"
edition = "2021"
# See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html
[dependencies]
actix-web = "4.2.1"
actix-cors = "0.6.3"
scraper = "0.12.0"
html2text = "0.4.3"
serde = { version = "1.0", features = ["derive", "rc"] }
serde_json = "1.0.87"
kuchiki = "0.8.1"
lib = { path = "../lib" }
[[bin]]
name = "indexer"
path = "src/main.rs"
|