-
Notifications
You must be signed in to change notification settings - Fork 0
/
Cargo.toml
52 lines (47 loc) · 1.2 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
[package]
name = "plist-pls"
description = "Fast, zero-copy XML & ASCII plist parsing"
categories = ["parser-implementations"]
keywords = ["plist", "parser", "apple"]
version = "0.1.0"
edition = "2021"
authors = ["alpha-tango-kilo <[email protected]>"]
license = "MIT OR Apache-2.0"
repository = "https://codeberg.org/alpha-tango-kilo/plist-pls"
exclude = [
"ascii_grammar",
"test_data",
]
[features]
default = ["write"]
write = ["dep:itoa", "dep:ryu"]
[dependencies]
base64 = "0.22"
delegate = "0.12"
indexmap = "2.2"
iter-read = "1"
itertools = "0.13.0"
itoa = { version = "1", optional = true }
logos = "0.14"
miette = "7.2"
paste = "1"
regex-lite = "0.1.5"
ryu = { version = "1", optional = true }
thiserror = "1"
time = { version = "0.3", features = ["formatting", "parsing"] }
[dependencies.derive_more]
version = "=1.0.0-beta.6"
features = [
"display",
"index",
"index_mut",
"into_iterator",
"is_variant",
]
[dev-dependencies]
miette = { version = "*", features = ["fancy"] }
# Fixes IsVariant documentation (see Value)
# FIXME: remove once released on crates.io
[patch.crates-io.derive_more]
git = "https://github.com/JelteF/derive_more"
rev = "f5a9199d573e0da5c076057e51427ab75ad4e50d"