typeline

Crates.iotypeline
lib.rstypeline
version
sourcesrc
created_at2025-01-03 17:00:04.843692+00
updated_at2025-01-03 17:00:04.843692+00
descriptionEfficient, Type-Safe Pipeline Processor
homepage
repositoryhttps://github.com/cmrschwarz/typeline
max_upload_size
id1502629
Cargo.toml error:TOML parse error at line 19, column 1 | 19 | autolib = false | ^^^^^^^ unknown field `autolib`, expected one of `name`, `version`, `edition`, `authors`, `description`, `readme`, `license`, `repository`, `homepage`, `documentation`, `build`, `resolver`, `links`, `default-run`, `default_dash_run`, `rust-version`, `rust_dash_version`, `rust_version`, `license-file`, `license_dash_file`, `license_file`, `licenseFile`, `license_capital_file`, `forced-target`, `forced_dash_target`, `autobins`, `autotests`, `autoexamples`, `autobenches`, `publish`, `metadata`, `keywords`, `categories`, `exclude`, `include`
size0
Christian Schwarz (cmrschwarz)

documentation

README

Typeline

githubgithub-buildcrates-iomsrvdocs-rs

An efficient, type-safe pipeline processing language.

Usage Examles

Add Leading Zeroes to Numbered Files

ls | tl lines r="foo_(?<id>\d+)\.txt" mv="foo_{id:02}.txt"

Advent of Code (Day 1, Part 1, 2023)

tl <input.txt lines fe: r-m='\d' fc: head next tail end join to_int end sum

Download all PNG Images from a Website

tl str="https://google.com" GET xpath="//@href" r-f="\.png$" GET enum-n write="{:02}.png"

License

MIT

Commit count: 0

cargo fmt