diff options
| author | Laurenz <laurmaedje@gmail.com> | 2024-12-05 16:25:18 +0100 |
|---|---|---|
| committer | GitHub <noreply@github.com> | 2024-12-05 15:25:18 +0000 |
| commit | caa72f4ec2401c275ddd3d8794dcf0bfdf9697a8 (patch) | |
| tree | 490fcf0e7d7e3deb947d377109d886ecb579081a /crates/typst-cli/src/main.rs | |
| parent | 8e4f5f21e0e52fb4ac88ab769e585af811d9b56e (diff) | |
Put HTTP server behind on-by-default feature flag (#5532)
Diffstat (limited to 'crates/typst-cli/src/main.rs')
| -rw-r--r-- | crates/typst-cli/src/main.rs | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/crates/typst-cli/src/main.rs b/crates/typst-cli/src/main.rs index 610f89c0..14f8a665 100644 --- a/crates/typst-cli/src/main.rs +++ b/crates/typst-cli/src/main.rs @@ -6,6 +6,7 @@ mod greet; mod init; mod package; mod query; +#[cfg(feature = "http-server")] mod server; mod terminal; mod timings; |
