17 lines
520 B
TOML
17 lines
520 B
TOML
[package]
|
|
name = "logparse"
|
|
version = "0.1.2"
|
|
edition = "2024"
|
|
description = "parse arbitrary messages containing rust-like debug output to syntax highlight them"
|
|
authors = ["Jana Dönszelmann <cratesio@donsz.nl>"]
|
|
license = "MIT OR Apache-2.0"
|
|
documentation = "https://docs.rs/logparse"
|
|
homepage = "https://git.donsz.nl/jana/logviewer"
|
|
repository = "https://git.donsz.nl/jana/logviewer"
|
|
readme = "README.md"
|
|
|
|
[dependencies]
|
|
winnow = {version="1", features=["parser"]}
|
|
proptest = "1"
|
|
proptest-derive = "0.8"
|
|
insta = "1"
|