-
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Cargo.toml
27 lines (24 loc) · 860 Bytes
/
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
[package]
name = "prelude-xml-parser"
version = "0.7.3"
edition = "2021"
authors = ["Paul Sanders <[email protected]>"]
description = "Deserialize Prelude EDC native XML files into Rust stucts."
documentation = "https://docs.rs/prelude-xml-parser"
homepage = "https://github.com/pbs-data-solutions/prelude-xml-parser"
repository = "https://github.com/pbs-data-solutions/prelude-xml-parser"
readme = "README.md"
keywords = ["prelude-edc", "xml", "deserialization", "pyo3"]
license = "MIT"
[features]
python = ["dep:pyo3"]
[dependencies]
chrono = { version = "0.4.39", features = ["serde"] }
pyo3 = { version = "0.23.3", optional = true }
serde = { version = "1.0.216", features = ["derive"] }
serde-xml-rs = "0.6.0"
serde_json = "1.0.133"
thiserror = "2.0.8"
[dev-dependencies]
insta = { version = "1.41.1", features = ["yaml"] }
tempfile = "3.14.0"