diff options
| author | Conrad Ludgate <conradludgate@gmail.com> | 2023-02-10 17:25:43 +0000 |
|---|---|---|
| committer | GitHub <noreply@github.com> | 2023-02-10 17:25:43 +0000 |
| commit | edda1b741a4a0816eb6e62eafd69fc9896603cf5 (patch) | |
| tree | cc5cb45caecc4fbe6b34e08f2347fdfdf897d0b5 /Cargo.toml | |
| parent | Bump debian from bullseye-20221205-slim to bullseye-20230208-slim (#701) (diff) | |
| download | atuin-edda1b741a4a0816eb6e62eafd69fc9896603cf5.zip | |
crossterm support (#331)
* crossterm v2
* patch crossterm
* fix-version
* no more tui dependency
* lints
Diffstat (limited to 'Cargo.toml')
| -rw-r--r-- | Cargo.toml | 8 |
1 files changed, 6 insertions, 2 deletions
@@ -56,8 +56,7 @@ directories = "4" indicatif = "0.17.1" serde = { version = "1.0.145", features = ["derive"] } serde_json = "1.0.86" -tui = { version = "0.19", default-features = false, features = ["termion"] } -termion = "1.5" +crossterm = { version = "0.26", features = ["use-dev-tty"] } unicode-width = "0.1" itertools = "0.10.5" tokio = { version = "1", features = ["full"] } @@ -75,6 +74,11 @@ semver = "1.0.14" runtime-format = "0.1.2" tiny-bip39 = "1" +# from tui +bitflags = "1.3" +cassowary = "0.3" +unicode-segmentation = "1.2" + [dependencies.tracing-subscriber] version = "0.3" default-features = false |
