helios-serde 0.2.1

Serialization module providing JSON and XML support for FHIR resources in the Helios FHIR Server.
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
# helios-serde

Version-agnostic serialization for FHIR resources (R4, R4B, R5, R6).

## Features

**JSON** support is always available — no extra feature flags required.

**XML** support requires the `xml` feature flag:

```toml
[dependencies]
helios-serde = { version = "...", features = ["xml"] }
```

### Performance note

Enabling the `xml` feature introduces a ~2% overhead on JSON deserialization. For optimal performance, do not enable it if you don't need XML support.