-
Notifications
You must be signed in to change notification settings - Fork 3
Expand file tree
/
Copy pathCargo.toml
More file actions
51 lines (47 loc) · 1.43 KB
/
Copy pathCargo.toml
File metadata and controls
51 lines (47 loc) · 1.43 KB
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
48
49
50
51
[package]
name = "mdbook-typst-math"
version = "0.4.0"
edition = "2021"
authors = [
"duskmoon (Campbell He) <kp.campbell.he@duskmoon314.com>",
"sakuraba07 <207140744+sakuraba07@users.noreply.github.com>",
]
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.100"
clap = { version = "4.5.54", features = ["derive"] }
codespan-reporting = "0.13.1"
flate2 = "1.1.8"
mdbook-preprocessor = "0.5.2"
pulldown-cmark = "0.13.0"
reqwest = { version = "0.13.1", features = ["blocking"] }
serde = { version = "1.0", features = ["derive"] }
serde_json = "1.0.149"
tar = "0.4.44"
time = { version = "0.3.45", features = ["local-offset"] }
tracing = "0.1.44"
tracing-subscriber = { version = "0.3.22", features = ["env-filter"] }
typst = "0.15.1"
typst-html = "0.15.1"
typst-kit = { version = "0.15.1", default-features = false, features = [
"scan-fonts",
] }
typst-layout = "0.15.1"
typst-svg = "0.15.1"
[features]
default = ["embed-fonts"]
# Embed Typst's fallback fonts through typst-kit's font store.
embed-fonts = ["typst-kit/embedded-fonts"]