-
Notifications
You must be signed in to change notification settings - Fork 182
Expand file tree
/
Copy pathCargo.toml
More file actions
57 lines (52 loc) · 1.43 KB
/
Copy pathCargo.toml
File metadata and controls
57 lines (52 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
52
53
54
55
56
57
[package]
name = "tinymist-task"
description = "Task model of typst for tinymist."
categories = ["compilers"]
keywords = ["language", "typst"]
# group: world
version = "0.15.0"
authors.workspace = true
license.workspace = true
edition.workspace = true
homepage.workspace = true
repository.workspace = true
rust-version.workspace = true
[dependencies]
anyhow.workspace = true
# Only used for calendar conversion; host clock and timezone access live in tinymist-std.
chrono = { workspace = true, optional = true, default-features = false }
clap.workspace = true
comemo.workspace = true
dirs.workspace = true
ecow.workspace = true
log.workspace = true
notify.workspace = true
parking_lot.workspace = true
rayon.workspace = true
rpds.workspace = true
reflexo-vec2svg.workspace = true
semver.workspace = true
serde.workspace = true
serde_json.workspace = true
serde_yaml.workspace = true
tinymist-world = { workspace = true }
tinymist-derive.workspace = true
tinymist-std = { workspace = true }
toml.workspace = true
tokio = { workspace = true, features = ["sync"] }
typst.workspace = true
typst-assets.workspace = true
typst-eval.workspace = true
typst-html.workspace = true
typst-layout.workspace = true
typst-pdf.workspace = true
typst-render.workspace = true
typst-shim.workspace = true
typst-svg.workspace = true
[features]
default = ["pdf", "text"]
no-content-hint = ["reflexo-vec2svg/no-content-hint"]
pdf = ["dep:chrono"]
text = []
[lints]
workspace = true