Crates.io | doru |
lib.rs | doru |
version | |
source | src |
created_at | 2024-12-06 18:07:03.611304 |
updated_at | 2024-12-06 18:07:03.611304 |
description | A simple library providing basic Todo functionality. |
homepage | |
repository | https://github.com/matej-almasi/doru |
max_upload_size | |
id | 1474499 |
Cargo.toml error: | TOML parse error at line 17, column 1 | 17 | 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` |
size | 0 |
Doru is a simple TODO list in your terminal.
doru add "Code something amazing"
doru list
[ ] Learn Rust [Open] (ID: 1)
[ ] Build a project [InProgress] (ID: 2)
[ ] Publish on GitHub [Open] (ID: 3)
doru edit 1 "Learn Rust like a Pro"
doru status 1 in-progress
doru list in-progress
[ ] Learn Rust like a Pro [InProgress] (ID: 1)
[ ] Build a project [InProgress] (ID: 2)
doru delete 3
You can use Cargo to install Doru from crates.io
TODO: add instructions to download artifact from GitHub, when ready
If you want to run Doru like in the examples above, you will need to add Doru to your Path.
If you have Rust toolchain installed on your machine, you can clone directly from GitHub and build locally. No additional dependencies are required:
git clone https://github.com/yourusername/doru.git
cd doru
cargo build --release
Doru stores TODO items in a JSON file. By default, this file is located at
~/.doru/TODOs.json
. You can change the location of the storage file by
setting the DORU_PATH
environment variable or by using the --path
option with the doru
command.
TODO: add docs.rs link
If you cloned the repository, you can run
cargo doc --no-deps --open
to generate the documentation and open it in your browser.
Licensed under either of
at your option.
Unless you explicitly state otherwise, any contribution intentionally submitted for inclusion in the work by you, as defined in the Apache-2.0 license, shall be dual licensed as above, without any additional terms or conditions.