diff --git a/Cargo.toml b/Cargo.toml index ac18748b..e781e0af 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -28,7 +28,7 @@ unic-langid = { version = "0.9.0", features = ["serde"] } unicode-segmentation = "1.6.0" unscanny = "0.1.0" url = { version = "2.4", features = ["serde"] } -biblatex = { version = "0.9", optional = true } +biblatex = { git = "https://github.com/typst/biblatex.git", rev = "06d0c2b10a749fd3b2c799b32077382b796a5609", optional = true } ciborium = { version = "0.2.1", optional = true } clap = { version = "4", optional = true, features = ["cargo"] } strum = { version = "0.26", features = ["derive"], optional = true } diff --git a/src/interop.rs b/src/interop.rs index ffb4f174..298b29e9 100644 --- a/src/interop.rs +++ b/src/interop.rs @@ -125,6 +125,8 @@ fn ed_role(role: EditorType) -> Option { EditorType::Reviser => None, EditorType::Collaborator => Some(PersonRole::Collaborator), EditorType::Organizer => Some(PersonRole::Organizer), + EditorType::Director => Some(PersonRole::Director), + EditorType::Unknown(role) => Some(PersonRole::Unknown(role)), } }