2021-04-20 23:53:07 +03:00
|
|
|
[package]
|
|
|
|
name = "atuin-client"
|
2022-04-12 11:32:19 +03:00
|
|
|
version = "0.8.1"
|
2021-04-20 23:53:07 +03:00
|
|
|
authors = ["Ellie Huxtable <ellie@elliehuxtable.com>"]
|
|
|
|
edition = "2018"
|
|
|
|
license = "MIT"
|
|
|
|
description = "client library for atuin"
|
2021-04-21 23:32:21 +03:00
|
|
|
homepage = "https://atuin.sh"
|
|
|
|
repository = "https://github.com/ellie/atuin"
|
2021-04-20 23:53:07 +03:00
|
|
|
|
|
|
|
# See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html
|
|
|
|
|
|
|
|
[dependencies]
|
2022-04-12 11:32:19 +03:00
|
|
|
atuin-common = { path = "../atuin-common", version = "0.8.1" }
|
2021-04-20 23:53:07 +03:00
|
|
|
|
|
|
|
log = "0.4"
|
|
|
|
chrono = { version = "0.4", features = ["serde"] }
|
|
|
|
eyre = "0.6"
|
2022-04-13 14:50:02 +03:00
|
|
|
directories = "4"
|
2021-04-20 23:53:07 +03:00
|
|
|
uuid = { version = "0.8", features = ["v4"] }
|
|
|
|
whoami = "1.1.2"
|
|
|
|
chrono-english = "0.1.4"
|
2022-04-12 23:47:07 +03:00
|
|
|
config = "0.13"
|
2022-04-22 21:24:38 +03:00
|
|
|
serde = { version = "1.0.126", features = ["derive"] }
|
2022-01-19 02:01:09 +03:00
|
|
|
serde_json = "1.0.75"
|
2022-04-13 14:50:50 +03:00
|
|
|
rmp-serde = "1.0.0"
|
2021-04-20 23:53:07 +03:00
|
|
|
sodiumoxide = "0.2.6"
|
2022-03-13 22:53:49 +03:00
|
|
|
reqwest = { version = "0.11", features = [
|
|
|
|
"blocking",
|
|
|
|
"json",
|
|
|
|
"rustls-tls",
|
|
|
|
], default-features = false }
|
2021-04-20 23:53:07 +03:00
|
|
|
base64 = "0.13.0"
|
|
|
|
parse_duration = "2.1.1"
|
2021-11-17 14:51:30 +03:00
|
|
|
rand = "0.8.4"
|
2021-04-20 23:53:07 +03:00
|
|
|
rust-crypto = "^0.2"
|
|
|
|
tokio = { version = "1", features = ["full"] }
|
|
|
|
async-trait = "0.1.49"
|
2022-04-13 14:49:33 +03:00
|
|
|
urlencoding = "2.1.0"
|
2021-12-11 03:23:42 +03:00
|
|
|
itertools = "0.10.3"
|
2021-04-20 23:53:07 +03:00
|
|
|
shellexpand = "2"
|
2022-03-13 22:53:49 +03:00
|
|
|
sqlx = { version = "0.5", features = [
|
|
|
|
"runtime-tokio-rustls",
|
|
|
|
"uuid",
|
|
|
|
"chrono",
|
|
|
|
"sqlite",
|
|
|
|
] }
|
2021-09-09 13:46:46 +03:00
|
|
|
minspan = "0.1.1"
|
2022-03-18 14:37:27 +03:00
|
|
|
regex = "1.5.4"
|
2022-04-13 20:08:49 +03:00
|
|
|
fs-err = "2.7"
|