forked from Relacibo/typst-as-lib
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathCargo.toml
28 lines (25 loc) · 857 Bytes
/
Cargo.toml
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
[package]
name = "typst-as-lib"
version = "0.11.1"
edition = "2021"
license = "MIT"
description = "Small wrapper for typst that makes it easier to use it as a templating engine"
repository = "https://github.com/Relacibo/typst-as-lib"
readme = "README.md"
keywords = ["template", "typst"]
categories = ["template-engine"]
[features]
packages = ["dep:binstall-tar", "dep:flate2", "dep:ureq"]
[dependencies]
binstall-tar = { version = "0.4", optional = true }
chrono = "0.4.39"
comemo = "0.4"
dirs = "5.0"
ecow = "0.2"
flate2 = { version = "1.0.35", optional = true }
thiserror = "2.0.6"
typst = { git = "https://github.com/NiklasEi/typst.git", branch = "file-embedding" }
ureq = { version = "2.12", optional = true }
[dev-dependencies]
derive_typst_intoval = "0.3.0"
typst-pdf = { git = "https://github.com/NiklasEi/typst.git", branch = "file-embedding" }