mirror of
https://github.com/itsjunetime/tdf.git
synced 2026-06-02 08:01:47 -04:00
Compare commits
1 Commits
v0.5.0
...
base64_simd
| Author | SHA1 | Date | |
|---|---|---|---|
| 22bdb7d92b |
@@ -1,5 +1,7 @@
|
||||
# Unreleased
|
||||
|
||||
- Switched simd base64 crate for one that works on stable (from `vb64` to `base64_simd`)
|
||||
|
||||
# v0.4.3
|
||||
|
||||
- Fix issue with some terminals hanging on startup
|
||||
|
||||
Generated
+233
-172
File diff suppressed because it is too large
Load Diff
+1
-2
@@ -57,8 +57,7 @@ inherits = "release"
|
||||
lto = "fat"
|
||||
|
||||
[features]
|
||||
default = ["nightly"]
|
||||
nightly = ["ratatui-image/vb64"]
|
||||
default = []
|
||||
tracing = ["tokio/tracing", "dep:console-subscriber"]
|
||||
epub = ["mupdf/epub"]
|
||||
cbz = ["mupdf/cbz"]
|
||||
|
||||
@@ -16,7 +16,9 @@ Designed to be performant, very responsive, and work well with even very large P
|
||||
## Installation
|
||||
|
||||
1. Get the rust toolchain from [rustup.rs](https://rustup.rs)
|
||||
2. Run `rustup install nightly && cargo +nightly install --git https://github.com/itsjunetime/tdf.git`
|
||||
2. Run `cargo install --git https://github.com/itsjunetime/tdf.git`
|
||||
|
||||
If you want to use this with `epub`s or `cbz`s, add `--features epub` or `--features cbz` to the command line (or `--features cbz,epub` for both)
|
||||
|
||||
## To Build
|
||||
First, you need to install the system dependencies. This will generally only include `libfontconfig` and `clang`. If you're on linux, these will probably show up in your package manager as something like `libfontconfig1-devel` or `libfontconfig-dev` and just `clang`.
|
||||
@@ -25,7 +27,7 @@ If it turns out that you're missing one of these, it will fail to compile and te
|
||||
|
||||
1. Get the rust toolchain from [rustup.rs](https://rustup.rs)
|
||||
2. Clone the repo and `cd` into it
|
||||
3. Run `cargo +nightly build --release`
|
||||
3. Run `cargo build --release`
|
||||
|
||||
The binary should then be found at `./target/release/tdf`.
|
||||
|
||||
|
||||
+1
-1
Submodule ratatui updated: 47c200fb7f...6a0b8ddf76
+1
-1
Submodule ratatui-image updated: fe3d0b992b...9564ae6466
Reference in New Issue
Block a user