Use published fork of Cylon
This commit is contained in:
parent
00f05256e5
commit
ff0126bac4
|
@ -880,16 +880,6 @@ dependencies = [
|
||||||
"winapi",
|
"winapi",
|
||||||
]
|
]
|
||||||
|
|
||||||
[[package]]
|
|
||||||
name = "cylon"
|
|
||||||
version = "0.2.0"
|
|
||||||
source = "git+https://github.com/reivilibre/cylon.git?branch=rei/fix_import#653d5a1c6769a0d08a7b56ad32ffd4646c786ea6"
|
|
||||||
dependencies = [
|
|
||||||
"futures-util",
|
|
||||||
"serde",
|
|
||||||
"serde_derive",
|
|
||||||
]
|
|
||||||
|
|
||||||
[[package]]
|
[[package]]
|
||||||
name = "dashmap"
|
name = "dashmap"
|
||||||
version = "4.0.2"
|
version = "4.0.2"
|
||||||
|
@ -3769,7 +3759,6 @@ dependencies = [
|
||||||
"chrono",
|
"chrono",
|
||||||
"clap",
|
"clap",
|
||||||
"colour",
|
"colour",
|
||||||
"cylon",
|
|
||||||
"diplomatic-bag",
|
"diplomatic-bag",
|
||||||
"env_logger",
|
"env_logger",
|
||||||
"feed-rs",
|
"feed-rs",
|
||||||
|
@ -3798,6 +3787,7 @@ dependencies = [
|
||||||
"quickpeep_structs",
|
"quickpeep_structs",
|
||||||
"quickpeep_utils",
|
"quickpeep_utils",
|
||||||
"rand 0.8.5",
|
"rand 0.8.5",
|
||||||
|
"reivilibre_fork_cylon",
|
||||||
"reqwest",
|
"reqwest",
|
||||||
"serde",
|
"serde",
|
||||||
"serde_bare",
|
"serde_bare",
|
||||||
|
@ -4001,6 +3991,17 @@ version = "0.6.25"
|
||||||
source = "registry+https://github.com/rust-lang/crates.io-index"
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
||||||
checksum = "f497285884f3fcff424ffc933e56d7cbca511def0c9831a7f9b5f6153e3cc89b"
|
checksum = "f497285884f3fcff424ffc933e56d7cbca511def0c9831a7f9b5f6153e3cc89b"
|
||||||
|
|
||||||
|
[[package]]
|
||||||
|
name = "reivilibre_fork_cylon"
|
||||||
|
version = "0.2.1"
|
||||||
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
||||||
|
checksum = "d52dd8e030963d91e0e903424baeee0d36c000f4e2cd266808b1e0fec3b4b8ee"
|
||||||
|
dependencies = [
|
||||||
|
"futures-util",
|
||||||
|
"serde",
|
||||||
|
"serde_derive",
|
||||||
|
]
|
||||||
|
|
||||||
[[package]]
|
[[package]]
|
||||||
name = "remove_dir_all"
|
name = "remove_dir_all"
|
||||||
version = "0.5.3"
|
version = "0.5.3"
|
||||||
|
|
|
@ -10,8 +10,3 @@ members = [
|
||||||
"quickpeep_structs",
|
"quickpeep_structs",
|
||||||
"quickpeep_utils"
|
"quickpeep_utils"
|
||||||
]
|
]
|
||||||
|
|
||||||
|
|
||||||
[patch.crates-io]
|
|
||||||
cylon = { git = "https://github.com/reivilibre/cylon.git", branch = "rei/fix_import" }
|
|
||||||
|
|
||||||
|
|
|
@ -64,7 +64,7 @@ reqwest = { version = "0.11.9", features = ["stream"] }
|
||||||
# N.B. TODO gemfeeds are Atom feeds for Gemini. Should support those.
|
# N.B. TODO gemfeeds are Atom feeds for Gemini. Should support those.
|
||||||
gemini-fetch = "0.2.1"
|
gemini-fetch = "0.2.1"
|
||||||
# Robots.txt
|
# Robots.txt
|
||||||
cylon = { version = "0.2.0", features = ["crawl-delay"] }
|
cylon = { package = "reivilibre_fork_cylon", version = "0.2.1", features = ["crawl-delay"] }
|
||||||
# RSS/Atom/JSON feeds
|
# RSS/Atom/JSON feeds
|
||||||
feed-rs = "1.0.0"
|
feed-rs = "1.0.0"
|
||||||
# Sitemaps
|
# Sitemaps
|
||||||
|
|
Loading…
Reference in New Issue