Cargo.toml (665B)
1 [package] 2 name = "crier-bin" 3 version = "0.0.1" 4 edition = "2021" 5 license = "AGPL-3.0-or-later" 6 rust-version = "1.79" 7 description = "Chronologically aggregate atom and rss feeds into a single atom feed." 8 authors = ["Louis Holbrook <dev@holbrook.no>"] 9 10 [dependencies] 11 clap = "2.34.0" 12 crier = { path = "./crier-lib", features = ["fs"] } 13 log = "^0.4" 14 env_logger = "^0.9" 15 16 [dependencies.uuid] 17 version = "^1.9" 18 features = ["v4"] 19 20 [patch.crates-io] 21 #atom_syndication = { path = "/home/lash/src/contrib/atom_syndication" } 22 atom_syndication = { git = "git://holbrook.no/contrib/atom_syndication", rev="9985c1610b2b819f5bd2f7a719567ee0b5419b85" } #branch="lash/entry-fromstr"