-
Notifications
You must be signed in to change notification settings - Fork 11
Expand file tree
/
Copy pathCargo.toml
More file actions
117 lines (115 loc) · 3.62 KB
/
Copy pathCargo.toml
File metadata and controls
117 lines (115 loc) · 3.62 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
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
[workspace]
resolver = "3"
members = [
"crates/ooxmlsdk",
"crates/ooxmlsdk-build",
"crates/ooxmlsdk-derive",
"crates/ooxmlsdk-fonts",
"crates/ooxmlsdk-formula",
"crates/ooxmlsdk-layout",
"crates/ooxmlsdk-pdf",
]
[workspace.package]
version = "0.13.0"
edition = "2024"
rust-version = "1.88"
authors = ["KaiserY"]
license = "MIT OR Apache-2.0"
repository = "https://github.com/KaiserY/ooxmlsdk"
documentation = "https://docs.rs/ooxmlsdk"
description = "OOXML SDK for Rust"
keywords = ["openxml", "office", "docx", "pptx", "xlsx"]
categories = ["parser-implementations"]
readme = "README.md"
[workspace.dependencies]
ooxmlsdk = { version = "0.13.0", path = "crates/ooxmlsdk", default-features = false }
ooxmlsdk-build = { version = "0.13.0", path = "crates/ooxmlsdk-build" }
ooxmlsdk-derive = { version = "0.13.0", path = "crates/ooxmlsdk-derive" }
ooxmlsdk-fonts = { version = "0.13.0", path = "crates/ooxmlsdk-fonts" }
ooxmlsdk-formula = { version = "0.13.0", path = "crates/ooxmlsdk-formula" }
ooxmlsdk-layout = { version = "0.13.0", path = "crates/ooxmlsdk-layout" }
ooxmlsdk-pdf = { version = "0.13.0", path = "crates/ooxmlsdk-pdf" }
emfsdk = { path = "../emfsdk/crates/emfsdk", features = ["render"] }
olecfsdk = { path = "../olecfsdk/crates/olecfsdk" }
base64 = "0.23.1"
bitflags = "2.13.1"
bytes = "1.12.1"
color = "0.3.3"
itoa = "1.0.18"
lexical-parse-float = "1.0.6"
memchr = "2.7.6"
quick-xml = "0.41.0"
regex = "1.13.1"
rustc-hash = "2.1.3"
serde = { version = "1.0.229", features = ["derive"] }
serde_derive = "1.0.229"
serde_json = "1.0.151"
quote = "1.0.47"
syn = { version = "3.0.3", features = ["full"] }
prettyplease = "0.3.0"
proc-macro2 = "1.0.107"
heck = "0.5.0"
smallvec = "1.15.2"
zip = { version = "8.6.0", default-features = false, features = [
"deflate-flate2-zlib-rs",
] }
thiserror = "2.0.20"
zmij = "1.0.23"
criterion = "0.8.2"
encoding_rs = "0.8.35"
flate2 = "1.1.0"
pdf-writer = "0.15.0"
subsetter = { version = "0.2.6", features = ["variable-fonts"] }
pprof = { version = "0.15", features = ["criterion", "flamegraph"] }
png = "0.18.1"
toml = "1.1.4"
fontique = { version = "0.11.0", features = ["fontconfig-dlopen", "system"] }
harfrust = { version = "0.12.0", default-features = false, features = ["std"] }
html5ever = "0.39.0"
hypher = "0.1.7"
icu_collator = { version = "2.2.1", features = ["compiled_data"] }
icu_calendar = { version = "2.2.1", features = ["compiled_data"] }
icu_datetime = { version = "2.2.0", features = ["compiled_data"] }
icu_locale = { version = "2.2.0", features = ["compiled_data"] }
icu_properties = { version = "2.2.0", features = ["compiled_data"] }
icu_segmenter = { version = "2.2.0", features = ["compiled_data"] }
image = { version = "0.25.10", default-features = false, features = [
"png",
"jpeg",
"gif",
"tiff",
"webp",
] }
jpeg-decoder = { version = "0.3.2", default-features = false, features = [
"platform_independent",
] }
jpeg-encoder = "0.7.1"
zune-jpeg = "0.5.15"
jiff = "0.2.35"
kurbo = "0.13.1"
libm = "0.2.16"
num-complex = "0.4.6"
num-integer = "0.1.47"
num-traits = "0.2.19"
parley = { version = "0.11.0", default-features = false, features = [
"std",
"complex-scripts",
] }
rustfft = "6.4.1"
resvg = { version = "0.47.0", default-features = false, features = [
"raster-images",
] }
statrs = { version = "0.18.0", default-features = false }
skrifa = "0.46.0"
unicode-bidi = "0.3.18"
unicode-math-class = "0.1.0"
unicode-script = "0.5.8"
usvg = { version = "0.47.0", default-features = false, features = [
"system-fonts",
"text",
] }
uuid = { version = "1.23.5", features = ["v5"] }
winnow = "1.0.4"
writeable = "0.6.3"
xmp-writer = "0.3.3"
yoke = { version = "0.8.3", features = ["derive"] }