json_sift_parser 0.1.0

JSON-Sift is my first parser. It processes aviation weather data (METAR) used in civil flights, decoding abbreviations and transforming raw API data into structured CSV format for easier analysis.
Documentation
[[bin]]
name = "json_sift_parser"
path = "src/main.rs"

[dependencies.anyhow]
version = "1.0"

[dependencies.clap]
features = ["derive"]
version = "4.0"

[dependencies.csv]
version = "1.2"

[dependencies.pest]
version = "2.7"

[dependencies.pest_derive]
version = "2.7"

[dependencies.regex]
version = "1.12"

[dependencies.serde]
features = ["derive"]
version = "1.0"

[dependencies.serde_json]
version = "1.0"

[dependencies.thiserror]
version = "1.0"

[dev-dependencies.pretty_assertions]
version = "1.4"

[lib]
name = "json_sift_parser"
path = "src/lib.rs"

[package]
authors = ["Vladyslava Spitkovska. <spitkovskavlada@gmail.com>"]
autobenches = false
autobins = false
autoexamples = false
autolib = false
autotests = false
build = false
categories = ["encoding", "command-line-utilities", "development-tools"]
description = "JSON-Sift is my first parser. It processes aviation weather data (METAR) used in civil flights, decoding abbreviations and transforming raw API data into structured CSV format for easier analysis."
edition = "2024"
keywords = ["json", "parser", "csv", "weather", "metar"]
license = "MIT"
name = "json_sift_parser"
readme = "README.md"
version = "0.1.0"

[[test]]
name = "parser_tests"
path = "tests/parser_tests.rs"