990040e150
* Bump sha2 from 0.10.5 to 0.10.6 Bumps [sha2](https://github.com/RustCrypto/hashes) from 0.10.5 to 0.10.6. - [Release notes](https://github.com/RustCrypto/hashes/releases) - [Commits](https://github.com/RustCrypto/hashes/compare/sha2-v0.10.5...sha2-v0.10.6) --- updated-dependencies: - dependency-name: sha2 dependency-type: direct:production update-type: version-update:semver-patch ... Signed-off-by: dependabot[bot] <support@github.com> * Bump uuid from 1.1.2 to 1.2.1 Bumps [uuid](https://github.com/uuid-rs/uuid) from 1.1.2 to 1.2.1. - [Release notes](https://github.com/uuid-rs/uuid/releases) - [Commits](https://github.com/uuid-rs/uuid/compare/1.1.2...1.2.1) --- updated-dependencies: - dependency-name: uuid dependency-type: direct:production update-type: version-update:semver-minor ... Signed-off-by: dependabot[bot] <support@github.com> * Bump serde_json from 1.0.85 to 1.0.86 Bumps [serde_json](https://github.com/serde-rs/json) from 1.0.85 to 1.0.86. - [Release notes](https://github.com/serde-rs/json/releases) - [Commits](https://github.com/serde-rs/json/compare/v1.0.85...v1.0.86) --- updated-dependencies: - dependency-name: serde_json dependency-type: direct:production update-type: version-update:semver-patch ... Signed-off-by: dependabot[bot] <support@github.com> * Bump itertools from 0.10.4 to 0.10.5 Bumps [itertools](https://github.com/rust-itertools/itertools) from 0.10.4 to 0.10.5. - [Release notes](https://github.com/rust-itertools/itertools/releases) - [Changelog](https://github.com/rust-itertools/itertools/blob/master/CHANGELOG.md) - [Commits](https://github.com/rust-itertools/itertools/commits) --- updated-dependencies: - dependency-name: itertools dependency-type: direct:production update-type: version-update:semver-patch ... Signed-off-by: dependabot[bot] <support@github.com> * Bump serde from 1.0.144 to 1.0.145 Bumps [serde](https://github.com/serde-rs/serde) from 1.0.144 to 1.0.145. - [Release notes](https://github.com/serde-rs/serde/releases) - [Commits](https://github.com/serde-rs/serde/compare/v1.0.144...v1.0.145) --- updated-dependencies: - dependency-name: serde dependency-type: direct:production update-type: version-update:semver-patch ... Signed-off-by: dependabot[bot] <support@github.com> Signed-off-by: dependabot[bot] <support@github.com> Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
80 lines
2.3 KiB
TOML
80 lines
2.3 KiB
TOML
[package]
|
|
name = "atuin"
|
|
version = "11.0.0"
|
|
authors = ["Ellie Huxtable <ellie@elliehuxtable.com>"]
|
|
edition = "2021"
|
|
rust-version = "1.59"
|
|
license = "MIT"
|
|
description = "atuin - magical shell history"
|
|
homepage = "https://atuin.sh"
|
|
repository = "https://github.com/ellie/atuin"
|
|
readme = "README.md"
|
|
|
|
[package.metadata.binstall]
|
|
pkg-url = "{ repo }/releases/download/v{ version }/{ name }-v{ version }-{ target }.tar.gz"
|
|
bin-dir = "{ name }-v{ version }-{ target }/{ bin }{ binary-ext }"
|
|
pkg-fmt = "tgz"
|
|
|
|
[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"]
|
|
|
|
[features]
|
|
# TODO(conradludgate)
|
|
# Currently, this keeps the same default built behaviour for v0.8
|
|
# We should rethink this by the time we hit a new breaking change
|
|
default = ["client", "sync", "server"]
|
|
client = ["atuin-client"]
|
|
sync = ["atuin-client/sync"]
|
|
server = ["atuin-server", "tracing-subscriber"]
|
|
|
|
[dependencies]
|
|
atuin-server = { path = "atuin-server", version = "11.0.0", optional = true }
|
|
atuin-client = { path = "atuin-client", version = "11.0.0", optional = true, default-features = false }
|
|
atuin-common = { path = "atuin-common", version = "11.0.0" }
|
|
|
|
log = "0.4"
|
|
pretty_env_logger = "0.4"
|
|
chrono = { version = "0.4", features = ["serde"] }
|
|
eyre = "0.6"
|
|
directories = "4"
|
|
indicatif = "0.17.1"
|
|
serde = { version = "1.0.145", features = ["derive"] }
|
|
serde_json = "1.0.86"
|
|
tui = { version = "0.19", default-features = false, features = ["termion"] }
|
|
termion = "1.5"
|
|
unicode-width = "0.1"
|
|
itertools = "0.10.5"
|
|
tokio = { version = "1", features = ["full"] }
|
|
async-trait = "0.1.49"
|
|
chrono-english = "0.1.4"
|
|
cli-table = { version = "0.4", default-features = false }
|
|
base64 = "0.13.0"
|
|
crossbeam-channel = "0.5.1"
|
|
clap = { version = "3.1.18", features = ["derive"] }
|
|
clap_complete = "3.1.4"
|
|
fs-err = "2.7"
|
|
whoami = "1.1.2"
|
|
rpassword = "7.0"
|
|
semver = "1.0.14"
|
|
|
|
[dependencies.tracing-subscriber]
|
|
version = "0.3"
|
|
default-features = false
|
|
features = ["ansi", "fmt", "registry", "env-filter"]
|
|
optional = true
|