refactor: rewrite in rust
This commit is contained in:
parent
20a3e8b437
commit
4116a7042d
72 changed files with 5683 additions and 3686 deletions
40
Cargo.toml
Normal file
40
Cargo.toml
Normal file
|
|
@ -0,0 +1,40 @@
|
|||
[package]
|
||||
name = "streamd"
|
||||
version = "0.1.0"
|
||||
edition = "2021"
|
||||
description = "Personal knowledge management and time-tracking CLI using @Tag annotations"
|
||||
license = "Apache-2.0"
|
||||
authors = ["Konstantin Fickel"]
|
||||
repository = "https://github.com/konstantinfickel/streamd"
|
||||
|
||||
[dependencies]
|
||||
clap = { version = "4", features = ["derive", "env"] }
|
||||
clap_complete = "4"
|
||||
serde = { version = "1", features = ["derive"] }
|
||||
serde_yaml = "0.9"
|
||||
thiserror = "2"
|
||||
miette = { version = "7", features = ["fancy"] }
|
||||
pulldown-cmark = "0.12"
|
||||
regex = "1"
|
||||
once_cell = "1"
|
||||
chrono = { version = "0.4", features = ["serde"] }
|
||||
walkdir = "2"
|
||||
indexmap = { version = "2", features = ["serde"] }
|
||||
itertools = "0.13"
|
||||
directories = "5"
|
||||
|
||||
[dev-dependencies]
|
||||
pretty_assertions = "1"
|
||||
tempfile = "3"
|
||||
|
||||
[[bin]]
|
||||
name = "streamd"
|
||||
path = "src/main.rs"
|
||||
|
||||
[lib]
|
||||
name = "streamd"
|
||||
path = "src/lib.rs"
|
||||
|
||||
[profile.release]
|
||||
lto = true
|
||||
strip = true
|
||||
Loading…
Add table
Add a link
Reference in a new issue