mirror of
https://github.com/YGGverse/aquatic-crawler.git
synced 2026-03-31 09:05:33 +00:00
31 lines
No EOL
1.1 KiB
TOML
31 lines
No EOL
1.1 KiB
TOML
[package]
|
|
name = "aquatic-crawler"
|
|
version = "0.2.0"
|
|
edition = "2024"
|
|
license = "MIT"
|
|
readme = "README.md"
|
|
description = "SSD-friendly FS crawler for the Aquatic BitTorrent tracker, based on the librqbit API"
|
|
keywords = ["aquatic", "librqbit", "bittorrent", "crawler", "resolver"]
|
|
categories = ["network-programming"]
|
|
repository = "https://github.com/YGGverse/aquatic-crawler"
|
|
# homepage = "https://yggverse.github.io"
|
|
|
|
[dependencies]
|
|
anyhow = "1.0"
|
|
btracker-fs = { version = "0.3", features = ["crawler"] }
|
|
chrono = "0.4.41"
|
|
clap = { version = "4.5", features = ["derive"] }
|
|
librqbit = {version = "9.0.0-beta.1", features = ["disable-upload"]}
|
|
log = "0.4"
|
|
regex = "1.11"
|
|
tokio = { version = "1.45", features = ["full"] }
|
|
tracing-subscriber = "0.3"
|
|
url = "2.5"
|
|
urlencoding = "2.1"
|
|
|
|
[patch.crates-io]
|
|
btracker-fs = { git = "https://github.com/yggverse/btracker-fs.git" }
|
|
#btracker-fs = { path = "../btracker-fs" }
|
|
|
|
librqbit = { git = "https://github.com/ikatson/rqbit.git", rev="b580a9610ae7c6eaacd305a3905f7e2d3202ca69", package = "librqbit" }
|
|
#librqbit = { version = "9.0.0-beta.1", path = "../../rqbit/crates/librqbit", package = "librqbit" } |