srt_subtitles_parser 0.1.3

A Rust-based parser that processes .srt (SubRip Subtitle) files and converts them into a structured data format
Documentation
[[bin]]
name = "srt_subtitles_parser"
path = "src/main.rs"

[dependencies.anyhow]
version = "1.0"

[dependencies.pest]
version = "2.8.3"

[dependencies.pest_derive]
version = "2.8.3"

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

[dependencies.serde_json]
version = "1.0"

[dependencies.thiserror]
version = "2.0"

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

[package]
authors = ["Anna Zinchenko"]
autobenches = false
autobins = false
autoexamples = false
autolib = false
autotests = false
build = false
description = "A Rust-based parser that processes .srt (SubRip Subtitle) files and converts them into a structured data format"
edition = "2024"
license = "MIT"
name = "srt_subtitles_parser"
readme = "README.md"
repository = "https://github.com/annnzinch/srt-subtitles-parser"
version = "0.1.3"

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