2020-10-04 17:59:28 -06:00
|
|
|
[package]
|
2021-02-13 05:58:40 -07:00
|
|
|
name = "atuin"
|
2021-04-13 12:14:07 -06:00
|
|
|
version = "0.5.0"
|
2020-10-04 17:59:28 -06:00
|
|
|
authors = ["Ellie Huxtable <e@elm.sh>"]
|
|
|
|
edition = "2018"
|
2020-10-04 18:06:41 -06:00
|
|
|
license = "MIT"
|
2021-02-15 13:33:35 -07:00
|
|
|
description = "atuin - magical shell history"
|
2020-10-04 17:59:28 -06:00
|
|
|
|
|
|
|
[dependencies]
|
2021-02-14 11:40:51 -07:00
|
|
|
log = "0.4"
|
2021-03-21 14:04:39 -06:00
|
|
|
fern = "0.6.0"
|
2021-04-13 12:14:07 -06:00
|
|
|
chrono = { version = "0.4", features = ["serde"] }
|
2021-02-14 11:40:51 -07:00
|
|
|
eyre = "0.6"
|
|
|
|
shellexpand = "2"
|
|
|
|
structopt = "0.3"
|
|
|
|
directories = "3"
|
|
|
|
uuid = { version = "0.8", features = ["v4"] }
|
2021-02-13 12:37:00 -07:00
|
|
|
indicatif = "0.15.0"
|
2021-04-13 12:14:07 -06:00
|
|
|
whoami = "1.1.2"
|
2021-02-14 06:28:01 -07:00
|
|
|
rocket = "0.4.7"
|
2021-02-14 15:12:35 -07:00
|
|
|
chrono-english = "0.1.4"
|
|
|
|
cli-table = "0.4"
|
2021-03-29 12:15:28 -06:00
|
|
|
config = "0.11"
|
2021-03-30 09:30:39 -06:00
|
|
|
serde_derive = "1.0.125"
|
2021-03-23 13:56:36 -06:00
|
|
|
serde = "1.0.125"
|
2021-04-13 12:14:07 -06:00
|
|
|
serde_json = "1.0.64"
|
|
|
|
rmp-serde = "0.15.4"
|
2021-03-19 18:50:31 -06:00
|
|
|
tui = "0.14"
|
|
|
|
termion = "1.5"
|
|
|
|
unicode-width = "0.1"
|
|
|
|
itertools = "0.10.0"
|
2021-03-21 14:04:39 -06:00
|
|
|
diesel = { version = "1.4.4", features = ["postgres", "chrono"] }
|
|
|
|
diesel_migrations = "1.4.0"
|
|
|
|
dotenv = "0.15.0"
|
|
|
|
sodiumoxide = "0.2.6"
|
2021-04-13 12:14:07 -06:00
|
|
|
reqwest = { version = "0.11", features = ["blocking", "json"] }
|
|
|
|
base64 = "0.13.0"
|
|
|
|
fork = "0.1.18"
|
|
|
|
parse_duration = "2.1.1"
|
|
|
|
rand = "0.8.3"
|
|
|
|
rust-crypto = "^0.2"
|
2021-04-14 11:40:50 -06:00
|
|
|
human-panic = "1.0.3"
|
2020-10-04 18:12:22 -06:00
|
|
|
|
|
|
|
[dependencies.rusqlite]
|
2021-04-06 04:59:07 -06:00
|
|
|
version = "0.25"
|
2020-10-04 18:12:22 -06:00
|
|
|
features = ["bundled"]
|
2021-03-21 14:04:39 -06:00
|
|
|
|
|
|
|
[dependencies.rocket_contrib]
|
|
|
|
version = "0.4.7"
|
|
|
|
default-features = false
|
|
|
|
features = ["diesel_postgres_pool", "json"]
|