-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathCargo.toml
More file actions
59 lines (53 loc) · 1.87 KB
/
Copy pathCargo.toml
File metadata and controls
59 lines (53 loc) · 1.87 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
58
59
[package]
name = "yomichan_importer"
version = "0.0.1"
edition = "2024"
description = "A Yomichan/Yomitan dictionary deserializer"
repository = "https://github.com/aramrw/importer"
license = "MIT"
[dependencies]
serde = { version = "1.0", features = ["rc"] }
serde_json = "1.0"
thiserror = "=2.0.12"
tempfile = "3.10.1"
chrono = { version = "=0.4.38", features = ["serde"] }
rayon = { version = "1.10.0", optional = true }
uuid = { version = "=1.10.0", features = ["v4", "v7", "fast-rng"] }
derive_more = { version = "1.0.0", features = ["debug", "from", "deref", "deref_mut"] }
indexmap = { version = "2.7.1", features = ["serde"] }
fancy-regex = "=0.14.0"
getset = "=0.1.6"
serde_with = "=3.13.0"
url = "=2.5.4"
better_default = "=1.0.5"
parking_lot = { version = "0.12.4", features = ["arc_lock", "serde", "send_guard"] }
derivative = { version = "2.2.0", features = ["use_core"] }
compact_str = { version = "0.9", features = ["serde"] }
tracing = { version = "0.1.41", optional = true }
simd-json = { version = "0.15.1", optional = true }
tracing-subscriber = "0.3.19"
tinyzip = "0.4.0"
# -- Unused Dependencies that may be useful in the future
# -- Don't Delete!
# memchr = { version = "2.7", optional = true }
# rmp-serde = "=1.3.0"
# rmpv = { version = "=1.3.0", features = ["with-serde"] }
# derive-where = { version = "1.5.0", features = ["serde"] }
# icu = "=2.0.0"
# bimap = { version = "=0.6.3", features = ["std"] }
# unicode-segmentation = "=1.12.0"
# unicode-normalization = "=0.1.24"
# serde-untagged = "=0.1.6"
[target.'cfg(any(target_os = "linux", target_os = "macos"))'.dependencies]
pprof = { version = "0.13", features = ["flamegraph"] }
[dev-dependencies]
pretty_assertions = "1.4.1"
tracing = { version = "0.1.41" }
tracing-subscriber = "0.3.19"
zip = "2.1.3"
[features]
default = []
simd = ["dep:simd-json"]
rayon = ["dep:rayon"]
trace = ["dep:tracing"]
full = ["simd", "rayon"]