mirror of
https://github.com/redlib-org/redlib.git
synced 2025-04-03 04:57:38 +03:00
feat(scraper): add scraper CLI
This commit is contained in:
parent
49ef59e000
commit
f3d2f0cc59
4 changed files with 114 additions and 3 deletions
10
Cargo.toml
10
Cargo.toml
|
@ -9,6 +9,7 @@ authors = [
|
|||
"spikecodes <19519553+spikecodes@users.noreply.github.com>",
|
||||
]
|
||||
edition = "2021"
|
||||
default-run = "redlib"
|
||||
|
||||
[dependencies]
|
||||
rinja = { version = "0.3.4", default-features = false }
|
||||
|
@ -16,6 +17,7 @@ cached = { version = "0.51.3", features = ["async"] }
|
|||
clap = { version = "4.4.11", default-features = false, features = [
|
||||
"std",
|
||||
"env",
|
||||
"derive",
|
||||
] }
|
||||
regex = "1.10.2"
|
||||
serde = { version = "1.0.193", features = ["derive"] }
|
||||
|
@ -56,3 +58,11 @@ sealed_test = "1.0.0"
|
|||
codegen-units = 1
|
||||
lto = true
|
||||
strip = "symbols"
|
||||
|
||||
[[bin]]
|
||||
name = "redlib"
|
||||
path = "src/main.rs"
|
||||
|
||||
[[bin]]
|
||||
name = "scraper"
|
||||
path = "src/scraper/main.rs"
|
Loading…
Add table
Add a link
Reference in a new issue