Vendor modified RSS to fix atom:link issue. This is 0.2.0.
This commit is contained in:
parent
a737cb1008
commit
530ffe6b03
|
@ -0,0 +1,3 @@
|
||||||
|
[submodule "rss"]
|
||||||
|
path = rss
|
||||||
|
url = git@github.com:NoraCodes/rss.git
|
|
@ -293,7 +293,7 @@ checksum = "5827cebf4670468b8772dd191856768aedcb1b0278a04f989f7766351917b9dc"
|
||||||
|
|
||||||
[[package]]
|
[[package]]
|
||||||
name = "corobel"
|
name = "corobel"
|
||||||
version = "0.1.0"
|
version = "0.2.0"
|
||||||
dependencies = [
|
dependencies = [
|
||||||
"atom_syndication",
|
"atom_syndication",
|
||||||
"chrono",
|
"chrono",
|
||||||
|
@ -1643,8 +1643,6 @@ dependencies = [
|
||||||
[[package]]
|
[[package]]
|
||||||
name = "rss"
|
name = "rss"
|
||||||
version = "2.0.1"
|
version = "2.0.1"
|
||||||
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
||||||
checksum = "acaf1331b7fc4edc3c2920819fee1766c27e8d40da593155832db3d6dea64e92"
|
|
||||||
dependencies = [
|
dependencies = [
|
||||||
"atom_syndication",
|
"atom_syndication",
|
||||||
"chrono",
|
"chrono",
|
||||||
|
|
|
@ -1,6 +1,6 @@
|
||||||
[package]
|
[package]
|
||||||
name = "corobel"
|
name = "corobel"
|
||||||
version = "0.1.0"
|
version = "0.2.0"
|
||||||
edition = "2021"
|
edition = "2021"
|
||||||
|
|
||||||
# See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html
|
# See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html
|
||||||
|
@ -15,6 +15,6 @@ tokio = { version = "1.21.2", features = [ "full" ] }
|
||||||
serde_json = "1.0.87"
|
serde_json = "1.0.87"
|
||||||
once_cell = "1.16.0"
|
once_cell = "1.16.0"
|
||||||
chrono = { version = "0.4.22", features = [ "serde" ] }
|
chrono = { version = "0.4.22", features = [ "serde" ] }
|
||||||
rss = { version = "2.0.1", features = [ "builders", "atom", "chrono" ] }
|
rss = { path = "./rss/", version = "2.0.1-atom-link-fix", features = [ "builders", "atom", "chrono" ] }
|
||||||
pulldown-cmark = "0.9.2"
|
pulldown-cmark = "0.9.2"
|
||||||
atom_syndication = "0.11.0"
|
atom_syndication = "0.11.0"
|
||||||
|
|
|
@ -0,0 +1 @@
|
||||||
|
Subproject commit 1b001f74ff947b70b6bfe48711a9f29f682dd988
|
Loading…
Reference in New Issue