[package]
edition = "2024"
name = "stationxml-rs"
version = "0.2.1"
build = false
exclude = [
"pyscripts/",
"CLAUDE.md",
"PROMPT.md",
]
autolib = false
autobins = false
autoexamples = false
autotests = false
autobenches = false
description = "Pure Rust FDSN StationXML and SeisComP SC3ML reader/writer with format-agnostic inventory model"
readme = "README.md"
keywords = [
"seismic",
"stationxml",
"fdsn",
"sc3ml",
"seiscomp",
]
categories = [
"encoding",
"parser-implementations",
"science",
]
license = "Apache-2.0"
repository = "https://github.com/luhtfiimanal/stationxml-rs"
[package.metadata.docs.rs]
all-features = true
rustdoc-args = [
"--cfg",
"docsrs",
]
[lib]
name = "stationxml_rs"
path = "src/lib.rs"
[[test]]
name = "fdsn_roundtrip"
path = "tests/fdsn_roundtrip.rs"
[[test]]
name = "sc3ml_roundtrip"
path = "tests/sc3ml_roundtrip.rs"
[dependencies.chrono]
version = "0.4"
features = ["serde"]
[dependencies.quick-xml]
version = "0.37"
features = ["serialize"]
[dependencies.serde]
version = "1"
features = ["derive"]
[dependencies.serde_json]
version = "1"
[dependencies.thiserror]
version = "2"
[dev-dependencies.serde_json]
version = "1"