atuin/Cargo.toml

65 lines
1.5 KiB
TOML
Raw Normal View History

[package]
2021-02-13 13:58:40 +01:00
name = "atuin"
version = "0.8.1"
authors = ["Ellie Huxtable <ellie@elliehuxtable.com>"]
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"
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" }
[workspace]
members = ["./atuin-client", "./atuin-server", "./atuin-common"]
[dependencies]
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" }
log = "0.4"
pretty_env_logger = "0.4"
chrono = { version = "0.4", features = ["serde"] }
eyre = "0.6"
directories = "4"
indicatif = "0.16.2"
serde_derive = "1.0.125"
serde = "1.0.126"
serde_json = "1.0.75"
tui = "0.16"
2021-03-20 01:50:31 +01:00
termion = "1.5"
unicode-width = "0.1"
itertools = "0.10.3"
tokio = { version = "1", features = ["full"] }
async-trait = "0.1.49"
chrono-english = "0.1.4"
cli-table = "0.4"
base64 = "0.13.0"
humantime = "2.1.0"
tabwriter = "1.2.1"
crossbeam-channel = "0.5.1"
2022-04-07 07:32:11 +02:00
clap = { version = "3.1.8", features = ["derive"] }
clap_complete = "3.1.1"
[profile.release]
lto = "fat"
codegen-units = 1
opt-level = 3