2020-10-05 01:59:28 +02:00
|
|
|
[package]
|
2021-02-13 13:58:40 +01:00
|
|
|
name = "atuin"
|
2022-04-12 10:32:19 +02:00
|
|
|
version = "0.8.1"
|
2021-04-20 22:53:07 +02:00
|
|
|
authors = ["Ellie Huxtable <ellie@elliehuxtable.com>"]
|
2020-10-05 01:59:28 +02:00
|
|
|
edition = "2018"
|
2022-04-04 23:22:56 +02:00
|
|
|
rust-version = "1.59"
|
2020-10-05 02:06:41 +02:00
|
|
|
license = "MIT"
|
2021-02-15 21:33:35 +01:00
|
|
|
description = "atuin - magical shell history"
|
2021-04-21 22:32:21 +02:00
|
|
|
homepage = "https://atuin.sh"
|
|
|
|
repository = "https://github.com/ellie/atuin"
|
2021-04-26 15:25:57 +02:00
|
|
|
readme = "README.md"
|
|
|
|
|
|
|
|
[package.metadata.deb]
|
|
|
|
maintainer = "Ellie Huxtable <ellie@elliehuxtable.com>"
|
|
|
|
copyright = "2021, Ellie Huxtable <ellie@elliehuxtable.com>"
|
|
|
|
license-file = ["LICENSE"]
|
|
|
|
depends = "$auto"
|
|
|
|
section = "utility"
|
|
|
|
|
|
|
|
[package.metadata.rpm]
|
|
|
|
package = "atuin"
|
|
|
|
|
|
|
|
[package.metadata.rpm.cargo]
|
|
|
|
buildflags = ["--release"]
|
|
|
|
|
|
|
|
[package.metadata.rpm.targets]
|
|
|
|
atuin = { path = "/usr/bin/atuin" }
|
2020-10-05 01:59:28 +02:00
|
|
|
|
2021-04-20 22:53:07 +02:00
|
|
|
[workspace]
|
|
|
|
members = ["./atuin-client", "./atuin-server", "./atuin-common"]
|
|
|
|
|
2020-10-05 01:59:28 +02:00
|
|
|
[dependencies]
|
2022-04-12 10:32:19 +02:00
|
|
|
atuin-server = { path = "atuin-server", version = "0.8.1" }
|
|
|
|
atuin-client = { path = "atuin-client", version = "0.8.1" }
|
|
|
|
atuin-common = { path = "atuin-common", version = "0.8.1" }
|
2021-04-20 22:53:07 +02:00
|
|
|
|
2021-02-14 19:40:51 +01:00
|
|
|
log = "0.4"
|
2021-04-21 19:13:51 +02:00
|
|
|
pretty_env_logger = "0.4"
|
2021-04-13 20:14:07 +02:00
|
|
|
chrono = { version = "0.4", features = ["serde"] }
|
2021-02-14 19:40:51 +01:00
|
|
|
eyre = "0.6"
|
2022-04-13 13:50:02 +02:00
|
|
|
directories = "4"
|
2021-05-31 11:43:55 +02:00
|
|
|
indicatif = "0.16.2"
|
2022-04-22 20:24:38 +02:00
|
|
|
serde = { version = "1.0.126", features = ["derive"] }
|
2022-01-19 00:01:09 +01:00
|
|
|
serde_json = "1.0.75"
|
2021-12-11 01:01:17 +01:00
|
|
|
tui = "0.16"
|
2021-03-20 01:50:31 +01:00
|
|
|
termion = "1.5"
|
|
|
|
unicode-width = "0.1"
|
2021-12-11 01:23:42 +01:00
|
|
|
itertools = "0.10.3"
|
2021-04-20 18:07:11 +02:00
|
|
|
tokio = { version = "1", features = ["full"] }
|
|
|
|
async-trait = "0.1.49"
|
2021-04-20 22:53:07 +02:00
|
|
|
chrono-english = "0.1.4"
|
|
|
|
cli-table = "0.4"
|
|
|
|
base64 = "0.13.0"
|
2021-04-20 18:07:11 +02:00
|
|
|
humantime = "2.1.0"
|
2021-04-25 19:21:52 +02:00
|
|
|
tabwriter = "1.2.1"
|
|
|
|
crossbeam-channel = "0.5.1"
|
2022-04-22 10:02:11 +02:00
|
|
|
clap = { version = "3.1.11", features = ["derive"] }
|
2022-04-21 23:13:53 +02:00
|
|
|
clap_complete = "3.1.2"
|
2022-04-13 19:08:49 +02:00
|
|
|
fs-err = "2.7"
|
2021-05-10 14:01:19 +02:00
|
|
|
|
2022-04-21 19:07:33 +02:00
|
|
|
|
|
|
|
[dependencies.tracing-subscriber]
|
|
|
|
version = "0.3"
|
|
|
|
default-features = false
|
|
|
|
features = [
|
|
|
|
"ansi",
|
|
|
|
"fmt",
|
|
|
|
"registry",
|
|
|
|
"env-filter",
|
|
|
|
]
|
|
|
|
|
2021-05-10 14:01:19 +02:00
|
|
|
[profile.release]
|
|
|
|
lto = "fat"
|
|
|
|
codegen-units = 1
|
|
|
|
opt-level = 3
|