mirror of
https://github.com/atuinsh/atuin.git
synced 2024-11-22 16:23:54 +01:00
b6cf80cd6e
Bumps [crossterm](https://github.com/crossterm-rs/crossterm) from 0.27.0 to 0.28.1. - [Release notes](https://github.com/crossterm-rs/crossterm/releases) - [Changelog](https://github.com/crossterm-rs/crossterm/blob/master/CHANGELOG.md) - [Commits](https://github.com/crossterm-rs/crossterm/commits) --- updated-dependencies: - dependency-name: crossterm dependency-type: direct:production update-type: version-update:semver-minor ... Signed-off-by: dependabot[bot] <support@github.com>
51 lines
1.3 KiB
TOML
51 lines
1.3 KiB
TOML
[package]
|
|
name = "atuin-history"
|
|
description = "The history crate for Atuin"
|
|
edition = "2021"
|
|
version = { workspace = true }
|
|
|
|
authors.workspace = true
|
|
rust-version.workspace = true
|
|
license.workspace = true
|
|
homepage.workspace = true
|
|
repository.workspace = true
|
|
readme.workspace = true
|
|
|
|
# See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html
|
|
|
|
[dependencies]
|
|
atuin-client = { path = "../atuin-client", version = "18.4.0-beta.3" }
|
|
atuin-common = { path = "../atuin-common", version = "18.4.0-beta.3" }
|
|
|
|
log = { workspace = true }
|
|
time = { workspace = true }
|
|
eyre = { workspace = true }
|
|
directories = { workspace = true }
|
|
indicatif = "0.17.5"
|
|
serde = { workspace = true }
|
|
serde_json = { workspace = true }
|
|
crossterm = { version = "0.28", features = ["use-dev-tty"] }
|
|
unicode-width = "0.1"
|
|
itertools = { workspace = true }
|
|
tokio = { workspace = true }
|
|
async-trait = { workspace = true }
|
|
interim = { workspace = true }
|
|
base64 = { workspace = true }
|
|
fs-err = { workspace = true }
|
|
whoami = { workspace = true }
|
|
semver = { workspace = true }
|
|
futures-util = "0.3"
|
|
tracing = "0.1"
|
|
uuid = { workspace = true }
|
|
unicode-segmentation = "1.11.0"
|
|
sysinfo = "0.30.7"
|
|
|
|
[dev-dependencies]
|
|
tracing-tree = "0.4"
|
|
divan = "0.1.14"
|
|
rand = { workspace = true }
|
|
|
|
[[bench]]
|
|
name = "smart_sort"
|
|
harness = false
|