Parakeet is a Rust-based Bluesky AppView aiming to implement most of the functionality required to support the Bluesky client

fix(did-resolver): allow really really minimal did web docs

Changed files
+1 -1
did-resolver
src
+1 -1
did-resolver/src/types.rs
··· 3 3 #[derive(Debug, Deserialize)] 4 4 #[serde(rename_all = "camelCase")] 5 5 pub struct DidDocument { 6 - #[serde(rename = "@context")] 6 + #[serde(default, rename = "@context")] 7 7 pub context: Vec<String>, 8 8 pub id: String, 9 9 /// Ordered set (no duplicates) of aliases and names for this account, in the form of URIs