reflexo-typst 0.7.0

Bridge Typst to Web Rendering, with power of typst.
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
use serde::{Deserialize, Serialize};

#[derive(Debug, PartialEq, Default, Serialize, Deserialize)]
pub struct WorkspaceConfig {
    pub version: String,

    /// Path to typst workspace.
    pub workspace: String,

    /// Path to entries
    pub files: Vec<String>,

    #[serde(rename = "fontPaths")]
    pub font_paths: Vec<String>,
}