-
Notifications
You must be signed in to change notification settings - Fork 2
/
Cargo.toml
66 lines (63 loc) · 1.51 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
[workspace]
resolver = "2"
members = ["crates/*"]
[workspace.package]
version = "0.1.0"
# must match ci.yml
rust-version = "1.80.0"
authors = ["tingerrr <[email protected]>"]
edition = "2021"
homepage = "https://tingerrr.github.io/typst-test/"
repository = "https://github.com/tingerrr/typst-test"
license = "Apache-2.0"
categories = ["command-line-utilities", "development-tools::testing"]
keywords = ["typst", "test"]
readme = "README.md"
[workspace.dependencies]
typst-test-lib = { path = "crates/typst-test-lib" }
typst-test-stdx = { path = "crates/typst-test-stdx" }
anyhow = "1.0.78"
clap = "4.4.12"
bitflags = "2.4.2"
bytemuck = "1.16.1"
chrono = "0.4.38"
codespan-reporting = "0.11.1"
comemo = "0.4.0"
dirs = "5.0.1"
ecow = "0.2.2"
env_proxy = "0.4.1"
flate2 = "1.0.30"
fontdb = "0.18.0"
glob = "0.3.1"
indoc = "2.0.5"
insta = "1.39.0"
ignore = "0.4.22"
native-tls = "0.2.12"
once_cell = "1.19.0"
pest_derive = "2.7.10"
pest = "2.7.10"
png = "0.17.13"
rayon = "1.8.0"
regex = "1.10.5"
semver = "1.0.23"
serde = "1.0.195"
serde_json = "1.0.121"
strsim = "0.11.1"
tar = "0.4.41"
tempdir = "0.3.7"
termcolor = "1.4.0"
tiny-skia = "0.11.4"
thiserror = "1.0.56"
toml = "0.8.11"
toml_edit = "0.22.17"
tracing = "0.1.40"
tracing-subscriber = "0.3.18"
tracing-tree = "0.3.0"
typst = "0.12.0"
typst-assets = "0.12.0"
typst-dev-assets = { git = "https://github.com/typst/typst-dev-assets", rev = "ee8ae61" }
typst-kit = "0.12.0"
typst-render = "0.12.0"
typst-syntax = "0.12.0"
unscanny = "0.1.0"
ureq = { version = "2.9.7", default-features = false }