A very fast implementation of tldr in Rust. https://tealdeer-rs.github.io/tealdeer/
  • Rust 94.5%
  • Dockerfile 3.7%
  • Shell 1.8%
Find a file
2016-01-08 19:19:03 +01:00
src Rename Updater to Cache 2016-01-08 19:19:03 +01:00
.gitignore Initial version: Simply print content without formatting 2015-12-29 10:22:37 +01:00
.travis.yml Travis config 2015-12-29 14:14:49 +01:00
Cargo.lock Implement Updater.last_update 2016-01-08 08:40:34 +01:00
Cargo.toml Implement Updater.last_update 2016-01-08 08:40:34 +01:00
LICENSE Add README.md 2015-12-29 10:26:56 +01:00
README.md Update README 2016-01-06 23:48:08 +01:00

tldr-rs

Build status

An implementation of tldr in Rust.

High level project goals:

  • Download and cache pages
  • Don't require a network connection for anything besides updating the cache
  • Command line interface similar or equivalent to the NodeJS client
  • Be fast
  • Support all major platforms

Building

Debug build with logging enabled:

$ cargo build --features logging

Release build without logging:

$ cargo build --release

To enable the log output, set the RUST_LOG env variable:

$ export RUST_LOG=tldr=debug

License

MIT