-
Notifications
You must be signed in to change notification settings - Fork 7
/
Copy pathCargo.toml
58 lines (55 loc) · 1.34 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
[workspace]
resolver = "2"
members = ["crates/*"]
[workspace.package]
version = "0.2.2"
# must match ci.yml
rust-version = "1.84"
authors = ["tingerrr <tinger@tinger.dev>"]
edition = "2021"
homepage = "https://tingerrr.github.io/tytanic/"
repository = "https://github.com/tingerrr/tytanic"
license = "Apache-2.0"
categories = ["command-line-utilities", "development-tools::testing"]
keywords = ["typst", "test"]
readme = "README.md"
[workspace.dependencies]
tytanic-core = { version = "0.2.2", path = "crates/tytanic-core" }
tytanic-filter = { version = "0.2.2", path = "crates/tytanic-filter" }
tytanic-utils = { version = "0.2.2", path = "crates/tytanic-utils" }
chrono = "0.4.38"
clap = "4.4.12"
codespan-reporting = "0.11.1"
color-eyre = "0.6.3"
comemo = "0.4.0"
ctrlc = "3.4.5"
dirs = "5.0.1"
ecow = "0.2.2"
fontdb = "0.18.0"
glob = "0.3.1"
insta = "1.39.0"
once_cell = "1.19.0"
oxipng = "9.1.3"
pest = "2.7.10"
pest_derive = "2.7.10"
png = "0.17.16"
rayon = "1.8.0"
regex = "1.10.5"
serde = "1.0.195"
serde_json = "1.0.121"
strsim = "0.11.1"
tempdir = "0.3.7"
termcolor = "1.4.0"
thiserror = "1.0.56"
tiny-skia = "0.11.4"
tracing = "0.1.40"
tracing-subscriber = "0.3.18"
tracing-tree = "0.3.0"
toml = "0.8.19"
typst = "0.13.1"
typst-assets = "0.13.1"
typst-kit = "0.13.1"
typst-library = "0.13.1"
typst-render = "0.13.1"
typst-syntax = "0.13.1"
uuid = "1.11.0"