Documentation
  • Coverage
  • 0%
    0 out of 23 items documented0 out of 3 items with examples
  • Size
  • Source code size: 26.78 kB This is the summed size of all the files inside the crates.io package for this release.
  • Documentation size: 889.42 kB This is the summed size of all files generated by rustdoc for all configured targets
  • Ø build duration
  • this release: 26s Average build duration of successful builds.
  • all releases: 26s Average build duration of successful builds in releases after 2024-10-23.
  • Links
  • crates.io
  • Dependencies
  • Versions
  • Owners
  • IceS2

Dear

Dear is a yet another note taking app.

It was born mainly from my desire for learning Rust... I realised that working on a personal project that I could actually use and improve while it became more complex would be a great fun learning experience.

Installation

Obs.: Still there is no published binary

Using cargo

cargo install dear

Usage

Dear is currently able to save and list Notes. They are stored as plain text in a configurable location. A Note has a title and it might have a description and any number of tags.

Configuration

TODO

Saving a Note

# Minimal Note
dear save --title "My First Note"

# Note with description
dear save --title "My Second Note" -d "I'm just testing out this, dear"

# Notes might have several tags
dear save --title "Rust is amazing" -t rust
dear save --title "My dog's schedule" -d "Walk at 9 and 18 | Eat at 12 and 20" -t dog -t home

List Notes

dear list
┌──────────────────────────────────────────────────────────────────────────────┐
                              My dog's schedule                               │
│                                                                              │
│ Walk at 9 and 18 | Eat at 12 and 20                                          │
│                                                                              │
│                                                                   [dog][home]│
└──────────────────────────────────────────────────────────────────────────────┘

┌──────────────────────────────────────────────────────────────────────────────┐
│                                My First Note                                 │
│                                                                              │
│                                                                              │
│                                                                              │
│                                                                              │
└──────────────────────────────────────────────────────────────────────────────┘

┌──────────────────────────────────────────────────────────────────────────────┐
│                               Rust is amazing                                │
│                                                                              │
│                                                                              │
│                                                                              │
│                                                                        [rust]│
└──────────────────────────────────────────────────────────────────────────────┘

┌──────────────────────────────────────────────────────────────────────────────┐
│                                My Second Note                                │
│                                                                              │
│ I'm just testing out this, dear                                              │


└──────────────────────────────────────────────────────────────────────────────┘

Contribution Guidelines

TODO