-
Notifications
You must be signed in to change notification settings - Fork 14
/
Copy pathCargo.toml
62 lines (55 loc) · 1.42 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
[package]
name = "rari-doc"
version = "0.1.5"
edition.workspace = true
authors.workspace = true
license.workspace = true
rust-version.workspace = true
[dependencies]
rari-utils.workspace = true
rari-types.workspace = true
rari-md.workspace = true
rari-data.workspace = true
rari-templ-func.workspace = true
thiserror.workspace = true
serde.workspace = true
serde_json.workspace = true
regex.workspace = true
tracing.workspace = true
url.workspace = true
itertools.workspace = true
constcat.workspace = true
indexmap.workspace = true
sha2.workspace = true
tracing-subscriber.workspace = true
dashmap.workspace = true
pretty_yaml.workspace = true
serde_yaml_ng.workspace = true
yaml_parser.workspace = true
schemars.workspace = true
yaml-rust = "0.4"
percent-encoding = "2"
pest = "2"
pest_derive = "2"
validator = { version = "0.19", features = ["derive"] }
chrono = { version = "0.4", features = ["serde"] }
scraper = { version = "0.21", features = ["deterministic"] }
lol_html = "2"
html-escape = "0.2"
html5ever = "0.29"
ego-tree = "0.9"
ignore = "0.4"
crossbeam-channel = "0.5"
rayon = "1"
enum_dispatch = "0.3"
icu_collator = "1"
icu_locid = "1"
strum = { version = "0.26", features = ["derive"] }
imagesize = "0.13"
svg_metadata = "0.5"
memoize = "0.4"
unescaper = "0.1"
css-syntax = { path = "../css-syntax", features = ["rari"] }
[dev-dependencies]
rari-types = { path = "../rari-types", features = ["testing"] }
indoc.workspace = true