use-data 0.1.0

Feature-gated facade crate for RustUse data format helpers
Documentation
[package]
name = "use-data"
description = "Feature-gated facade crate for RustUse data format helpers"
publish = true
version.workspace = true
authors.workspace = true
edition.workspace = true
license.workspace = true
repository.workspace = true
homepage.workspace = true
documentation.workspace = true
rust-version.workspace = true
readme = "README.md"
keywords = ["data", "json", "yaml", "xml", "csv"]
categories = ["encoding", "parser-implementations"]

[package.metadata.docs.rs]
all-features = true

[features]
default = []
json = ["dep:use-json"]
toml = ["dep:use-toml"]
yaml = ["dep:use-yaml"]
csv = ["dep:use-csv"]
xml = ["dep:use-xml"]
full = ["json", "toml", "yaml", "csv", "xml"]

[dependencies]
use-csv = { version = "0.1.0", path = "../use-csv", optional = true }
use-json = { version = "0.1.0", path = "../use-json", optional = true }
use-toml = { version = "0.1.0", path = "../use-toml", optional = true }
use-xml = { version = "0.1.0", path = "../use-xml", optional = true }
use-yaml = { version = "0.1.0", path = "../use-yaml", optional = true }

[lints]
workspace = true