[package]
edition = "2021"
name = "readap"
version = "0.2.0"
authors = ["Matthew Iannucci <mpiannucci@gmail.com>"]
build = false
autolib = false
autobins = false
autoexamples = false
autotests = false
autobenches = false
description = "A parser for the OpenDAP DAP2 protocol"
readme = "README.md"
keywords = [
"dap",
"opendap",
"scientific",
"data",
]
categories = [
"encoding",
"parser-implementations",
"parsing",
"science",
"science::geo",
]
license = "MIT"
repository = "https://github.com/mpiannucci/readap/readap"
resolver = "3"
[lib]
name = "readap"
path = "src/lib.rs"
[[test]]
name = "parse"
path = "tests/parse.rs"
[[test]]
name = "query_integration"
path = "tests/query_integration.rs"
[[test]]
name = "url_builder_integration"
path = "tests/url_builder_integration.rs"
[dependencies.nom]
version = "7"
[dependencies.thiserror]
version = "1.0"