blob: 28e6f17fdc1906e2accbca4affcf71cb61decc52 (
plain) (
blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
|
[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_json = "1.0.87"
lib = { path = "../lib" }
[[bin]]
name = "indexer"
path = "src/main.rs"
|