diff options
author | Vika Shleina <vika@fireburn.ru> | 2021-07-15 04:32:29 +0300 |
---|---|---|
committer | Vika <vika@fireburn.ru> | 2021-07-19 04:57:11 +0300 |
commit | d399fd0bd00c9ea073e5b057de70c9ffdd9356f8 (patch) | |
tree | a9dafbeb62fb2aeb56e2d190565c70cd7f4b9d7a /Cargo.lock | |
parent | 93b56879298810d60d121203403e2416f35e4765 (diff) | |
download | kittybox-d399fd0bd00c9ea073e5b057de70c9ffdd9356f8.tar.zst |
Renamed main executable to kittybox, added tools
The new tools are: - kittybox-bulk-import, a bare-bones Micropub client that reads a JSON list of posts and then sends them one by one to the Micropub endpoint - pyindieblog-export, my personal tool which directly connects to Pyindieblog's redis instance and extracts data from it in JSON format suitable for use with kittybox-bulk-import.
Diffstat (limited to 'Cargo.lock')
-rw-r--r-- | Cargo.lock | 7 |
1 files changed, 4 insertions, 3 deletions
diff --git a/Cargo.lock b/Cargo.lock index 902f362..58776a1 100644 --- a/Cargo.lock +++ b/Cargo.lock @@ -67,9 +67,9 @@ dependencies = [ [[package]] name = "anyhow" -version = "1.0.41" +version = "1.0.42" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "15af2628f6890fe2609a3b91bef4c83450512802e59489f9c1cb1fa5df064a61" +checksum = "595d3cfa7a60d4555cb5067b99f07142a08ea778de5cf993f7b75c7d8fabc486" [[package]] name = "arrayref" @@ -1184,9 +1184,10 @@ dependencies = [ ] [[package]] -name = "kittybox_micropub" +name = "kittybox" version = "0.1.0" dependencies = [ + "anyhow", "async-std", "async-trait", "chrono", |