-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathCargo.toml
47 lines (43 loc) · 1.19 KB
/
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
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
[package]
name = "mdbook-typst-math"
version = "0.1.1"
edition = "2021"
authors = ["duskmoon (Campbell He) <[email protected]>"]
description = "An mdbook preprocessor to use typst to render math."
readme = "README.md"
repository = "https://github.com/duskmoon314/mdbook-typst-math"
license = "MIT"
keywords = ["mdbook", "typst", "mdbook-preprocessor"]
include = [
"/src",
"/Cargo.toml",
"/Cargo.lock",
"/README.md",
"/LICENSE",
"/.cargo",
]
# See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html
[dependencies]
anyhow = "1.0.86"
clap = { version = "4.5.4", features = ["derive"] }
comemo = "0.4.0"
flate2 = "1.0.30"
fontdb = "0.17.0"
mdbook = "0.4.40"
pulldown-cmark = "0.11.0"
reqwest = { version = "0.12.4", default-features = false, features = [
"blocking",
"rustls-tls",
] }
semver = "1.0.23"
serde_json = "1.0.117"
tar = "0.4.40"
time = { version = "0.3.36", features = ["local-offset"] }
toml = "0.8.13"
typst = "0.11.1"
typst-assets = { version = "0.11.1", features = ["fonts"], optional = true }
typst-svg = "0.11.1"
[features]
default = ["embed-fonts"]
# Embed fonts from typst-assets
embed-fonts = ["typst-assets"]