-
Notifications
You must be signed in to change notification settings - Fork 0
/
Cargo.toml
72 lines (68 loc) · 1.87 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
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
[package]
name = "mdbook-typst-pdf"
version = "0.5.1"
edition = "2021"
license = "MIT OR Apache-2.0"
repository = "https://github.com/KaiserY/mdbook-typst-pdf"
description = "mdbook typst pdf backend"
keywords = ["mdbook", "typst", "pdf"]
# See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html
[dependencies]
typst = "0.12.0"
typst-pdf = "0.12.0"
typst-kit = "0.12.0"
typst-timing = "0.12.0"
codespan-reporting = "0.11.1"
chrono = { version = "0.4.38", default-features = false, features = [
"clock",
"std",
] }
ecow = "0.2.2"
tracing = "0.1.40"
tracing-subscriber = { version = "0.3.18", features = ["env-filter"] }
same-file = "1.0.6"
comemo = "0.4.0"
fontdb = { version = "0.23", default-features = false, features = [
"memmap",
"fontconfig",
] }
once_cell = "1"
ureq = { version = "2", default-features = false, features = ["gzip", "json"] }
env_proxy = "0.4"
dirs = "5"
flate2 = "1"
tar = "0.4"
pathdiff = "0.2"
tempfile = "3.13.0"
mdbook = "0.4.40"
serde = { version = "1.0.210", features = ["derive"] }
anyhow = "1.0.90"
pulldown-cmark = "0.12.2"
markup5ever_rcdom = "=0.5.0-unofficial"
html5ever = "0.29.0"
regex = "1.11.0"
parking_lot = "0.12.3"
notify = "6"
openssl = { version = "0.10.68" , features = ["vendored"] }
# The profile that 'cargo dist' will build with
[profile.dist]
inherits = "release"
lto = "thin"
# Config for 'cargo dist'
[workspace.metadata.dist]
# The preferred cargo-dist version to use in CI (Cargo.toml SemVer syntax)
cargo-dist-version = "0.21.0"
# CI backends to support
ci = "github"
# The installers to generate for each app
installers = []
# Target platforms to build apps for (Rust target-triple syntax)
targets = [
"aarch64-apple-darwin",
"x86_64-apple-darwin",
"x86_64-unknown-linux-gnu",
"x86_64-unknown-linux-musl",
"x86_64-pc-windows-msvc",
]
# Which actions to run on pull requests
pr-run-mode = "plan"