diff options
| author | Beiri22 <beier1@hs-mittweida.de> | 2023-08-06 23:49:04 +0200 |
|---|---|---|
| committer | GitHub <noreply@github.com> | 2023-08-06 23:49:04 +0200 |
| commit | 357bce56f5ac701780e4fb967acce3f30ffcadf6 (patch) | |
| tree | f582efe3197de94e67f5b0b356a9963a6a04fd27 /crates/typst-cli/src/main.rs | |
| parent | 823fc5e5c4cb5c8555d0bb64e6f4ab4f61bce0e2 (diff) | |
Query-System for metadata (#1812)
Co-authored-by: Laurenz <laurmaedje@gmail.com>
Diffstat (limited to 'crates/typst-cli/src/main.rs')
| -rw-r--r-- | crates/typst-cli/src/main.rs | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/crates/typst-cli/src/main.rs b/crates/typst-cli/src/main.rs index 425d05fd..62f14566 100644 --- a/crates/typst-cli/src/main.rs +++ b/crates/typst-cli/src/main.rs @@ -2,6 +2,7 @@ mod args; mod compile; mod fonts; mod package; +mod query; mod tracing; mod watch; mod world; @@ -36,6 +37,7 @@ fn main() -> ExitCode { let res = match arguments.command { Command::Compile(command) => crate::compile::compile(command), Command::Watch(command) => crate::watch::watch(command), + Command::Query(command) => crate::query::query(command), Command::Fonts(command) => crate::fonts::fonts(command), }; |
