Cargo.toml (994B)
1 [package] 2 name = "crier" 3 version = "0.0.1" 4 edition = "2021" 5 rust-version = "1.79" 6 description = "Chronologically aggregate atom and rss feeds into a single atom feed." 7 documentation = "https://defalsify.org/pub/doc/crier/0.0.1/crier" 8 homepage = "https://defalsify.org/git/crier" 9 authors = ["Louis Holbrook <dev@holbrook.no>"] 10 11 # See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html 12 13 [dependencies] 14 digest = "^0.10.7" 15 rs_sha512 = "^0.1.3" 16 http = "^1.0" 17 chrono = "^0.4" 18 itertools = "^0.13" 19 serde = "^1.0" 20 atom_syndication = "^0.12" 21 log = "^0.4" 22 env_logger = "^0.9" 23 24 [dependencies.uuid] 25 version = "^1.9" 26 features = ["v4", "v5"] 27 28 [dependencies.rss] 29 version = "^2.0" 30 features = ["atom"] 31 32 [patch.crates-io] 33 atom_syndication = { git = "git://holbrook.no/contrib/atom_syndication", rev="9985c1610b2b819f5bd2f7a719567ee0b5419b85" } #branch="lash/entry-fromstr" 34 35 [dev-dependencies] 36 tempfile = "3.3.0" 37 mediatype = "^0.19" 38 quick-xml = "^0.31" 39 40 41 [features] 42 fs = []