aboutsummaryrefslogtreecommitdiffstats
path: root/crates/atuin-history/Cargo.toml
blob: 33f8d4ec84102d5ea7e0953fda847cc1c1e5dceb (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
[package]
name = "atuin-history"
description = "The history crate for Atuin"
edition = "2024"
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.13.0-beta.2" }

time = { workspace = true }
serde = { workspace = true }
crossterm = { workspace = true, features = ["use-dev-tty"] }
unicode-segmentation = "1.11.0"

[dev-dependencies]
divan = "0.1.14"
rand = { workspace = true }

[[bench]]
name = "smart_sort"
harness = false