-
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathCargo.toml
More file actions
56 lines (50 loc) · 1.48 KB
/
Copy pathCargo.toml
File metadata and controls
56 lines (50 loc) · 1.48 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
[package]
name = "indesign-idml"
version = "0.1.0"
edition = "2024"
rust-version = "1.95"
license = "MIT OR Apache-2.0"
description = "Secure Rust library for parsing, inspecting, and generating Adobe InDesign IDML packages."
repository = "https://github.com/eldryoth/indesign-idml"
homepage = "https://github.com/eldryoth/indesign-idml"
documentation = "https://docs.rs/indesign-idml"
readme = "README.md"
keywords = ["idml", "indesign", "xml", "publishing", "parser"]
categories = ["parser-implementations", "encoding", "filesystem"]
include = [
"src/**",
"examples/**",
"tests/idml_text_cli.rs",
"tests/fixtures/README.md",
"fuzz/**",
"README.md",
"SECURITY_IMPLEMENTATION_PLAN.md",
"RELEASE_PLAN.md",
"LICENSE-*",
]
[features]
default = ["std"]
std = ["base64-ng/std"]
serde = ["dep:serde", "indexmap/serde"]
strict-zip = []
cli = ["std"]
[[bin]]
name = "idml-text"
path = "src/bin/idml-text.rs"
required-features = ["cli"]
[dependencies]
base64-ng = { version = "1.0.0", default-features = false, features = ["alloc"] }
indexmap = "2.14.0"
quick-xml = "0.40.1"
thiserror = "2.0.18"
zip = { version = "8.6.0", default-features = false, features = ["deflate"] }
serde = { version = "1.0.228", optional = true, features = ["derive"] }
[dev-dependencies]
assert_cmd = "2.2.2"
tempfile = "3.27.0"
[package.metadata.cargo-machete]
ignored = ["assert_cmd", "tempfile"]
[lints.rust]
unsafe_code = "forbid"
rust_2018_idioms = { level = "deny", priority = -1 }
missing_docs = "warn"