sqlitepipe 0.1.1

A simple tool for piping the output of a command into sqlite databases.
Documentation
[package]
name = "sqlitepipe"
version = "0.1.1"
edition = "2024"
authors = ["Alexander Weld <weldale@gmail.com>"]
license-file = "LICENSE"
description = "A simple tool for piping the output of a command into sqlite databases."
homepage = "https://weldale.xyz/projects/sqlitepipe/"
repository = "https://gitlab.com/xicalango/sqlitepipe"
documentation = "https://gitlab.com/xicalango/sqlitepipe/-/blob/main/README.md"
readme = "README.md"
keywords = ["cli", "sqlite", "text-processing"]
categories = ["command-line-utilities", "text-processing"]

[dependencies]
clap = { version = "4.5.58", features = ["derive"] }
rusqlite = { version = "0.38.0", features = ["bundled", "blob"] }
snafu = "0.8.9"

[profile.release-min]
inherits = "release"
strip = "symbols"
lto = true