-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathCargo.toml
62 lines (55 loc) · 1.71 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
[workspace]
resolver = "2"
members = ["crates/*"]
[workspace.lints.clippy]
pedantic = { level = "warn", priority = -1 }
# Too noisy and not really an issue
must_use_candidate = "allow"
return_self_not_must_use = "allow"
# Not a priority for svgo parity
float_cmp = "allow"
dbg_macro = "warn"
[workspace.package]
authors = ["Noah <[email protected]>"]
license = "MIT"
repository = "https://github.com/noahbald/oxvg"
[workspace.dependencies]
oxvg = { path = "crates/oxvg" }
oxvg_ast = { path = "crates/oxvg_ast", version = "0.0.1-alpha.1" }
oxvg_collections = { path = "crates/oxvg_collections", version = "0.0.1-alpha.1" }
oxvg_derive = { path = "derive" }
oxvg_diagnostics = { path = "crates/oxvg_diagnostics", version = "0.0.1-alpha.1" }
oxvg_optimiser = { path = "crates/oxvg_optimiser" }
oxvg_path = { path = "crates/oxvg_path", version = "0.0.1-beta.4" }
anyhow = "1.0"
bitflags = { version = "2.7.0" }
# NOTE: Out of date version used for compatibility with selectors
# https://github.com/servo/stylo/blob/main/Cargo.toml#L35
cssparser = "0.34.0"
derive-where = "1.2"
itertools = "0.14"
lazy_static = "1.5"
lightningcss = { version = "1.0.0-alpha.63", features = [ "visitor" ] }
log = "0.4"
markup5ever = "0.14"
phf = { version = "0.11", features = ["macros"] }
precomputed-hash = "0.1"
rcdom = { package = "markup5ever_rcdom", version = "=0.5.0-unofficial" }
regex = "1.11"
selectors = "0.26"
serde = "1.0"
serde_json = "1.0"
string_cache = "0.8"
quick-xml = "0.31"
xml5ever = "0.20"
# Developer dependencies
ctor = "0.2"
criterion = { version = "0.5", features = ["html_reports"] }
env_logger = "0.11"
insta = "1.42"
pretty_assertions = "1.4"
[profile.bench]
inherits = "release"
[profile.profiling]
inherits = "release"
debug = true