WIP: Create apub_inbox crate #8

Draft
steffo wants to merge 40 commits from feature/apub-inbox into main
Showing only changes of commit ffe5c3cc03 - Show all commits

View file

@ -25,7 +25,7 @@ impl StreamsJsonLD for &json_ld::Node {
let r#str = match value.as_str() { let r#str = match value.as_str() {
None => return Some(Err(anyhow!("Couldn't process property as JSON-LD string"))), None => return Some(Err(anyhow!("Couldn't process property as JSON-LD string"))),
Some(string) => string Some(r#str) => r#str
}; };
let string = r#str.to_string(); let string = r#str.to_string();