streamd/Cargo.toml
Renovate Bot 3b2d8c7e63
Some checks are pending
Continuous Integration / Lint, Check & Test (push) Waiting to run
Continuous Integration / Build Package (push) Waiting to run
fix(deps): update rust crate pulldown-cmark to 0.13
2026-03-30 02:18:10 +02:00

40 lines
897 B
TOML

[package]
name = "streamd"
version = "0.1.0"
edition = "2021"
description = "Personal knowledge management and time-tracking CLI using @Tag annotations"
license = "AGPL-3.0-only"
authors = ["Konstantin Fickel"]
repository = "https://github.com/konstantinfickel/streamd"
[dependencies]
clap = { version = "4", features = ["derive", "env"] }
clap_complete = "4"
serde = { version = "1", features = ["derive"] }
toml = "0.8"
thiserror = "2"
miette = { version = "7", features = ["fancy"] }
pulldown-cmark = "0.13"
regex = "1"
once_cell = "1"
chrono = { version = "0.4", features = ["serde"] }
walkdir = "2"
indexmap = { version = "2", features = ["serde"] }
itertools = "0.14"
directories = "5"
[dev-dependencies]
pretty_assertions = "=1.4.1"
tempfile = "=3.27.0"
[[bin]]
name = "streamd"
path = "src/main.rs"
[lib]
name = "streamd"
path = "src/lib.rs"
[profile.release]
lto = true
strip = true