dfdl 0.1.0

A rust implementation of the DFDL Specification from the OGF
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
[package]
year = "2024"
license = "MIT"
name = "dfdl"
version = "0.1.0"
edition = "2021"
description = "A rust implementation of the DFDL Specification from the OGF"
keywords = ["dfdl", "encoding", "parsing"]
categories = ["parsing", "encoding"]
repository = "https://github.com/HeathenHacker/dfdl-rs"

[dependencies]
serde = { version = "1.0.210", optional = true }
thiserror = "1.0.64"

[features]
default = ["serde"]
serde = ["dep:serde"]