2021-04-20 22:53:07 +02:00
|
|
|
[package]
|
|
|
|
name = "atuin-client"
|
2023-02-28 22:44:39 +01:00
|
|
|
version = "13.0.1"
|
2021-04-20 22:53:07 +02:00
|
|
|
authors = ["Ellie Huxtable <ellie@elliehuxtable.com>"]
|
|
|
|
edition = "2018"
|
|
|
|
license = "MIT"
|
|
|
|
description = "client library for atuin"
|
2021-04-21 22:32:21 +02:00
|
|
|
homepage = "https://atuin.sh"
|
|
|
|
repository = "https://github.com/ellie/atuin"
|
2021-04-20 22:53:07 +02:00
|
|
|
|
|
|
|
# See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html
|
|
|
|
|
2022-04-22 22:14:23 +02:00
|
|
|
[features]
|
|
|
|
default = ["sync"]
|
|
|
|
sync = [
|
|
|
|
"urlencoding",
|
|
|
|
"sodiumoxide",
|
|
|
|
"reqwest",
|
2022-04-25 08:13:30 +02:00
|
|
|
"sha2",
|
|
|
|
"hex",
|
2022-04-22 22:14:23 +02:00
|
|
|
"rmp-serde",
|
|
|
|
"base64",
|
|
|
|
]
|
|
|
|
|
2021-04-20 22:53:07 +02:00
|
|
|
[dependencies]
|
2023-02-28 22:44:39 +01:00
|
|
|
atuin-common = { path = "../atuin-common", version = "13.0.1" }
|
2021-04-20 22:53:07 +02:00
|
|
|
|
|
|
|
log = "0.4"
|
|
|
|
chrono = { version = "0.4", features = ["serde"] }
|
2022-12-18 19:26:09 +01:00
|
|
|
clap = { version = "4.0.18", features = ["derive"] }
|
2021-04-20 22:53:07 +02:00
|
|
|
eyre = "0.6"
|
2022-04-13 13:50:02 +02:00
|
|
|
directories = "4"
|
2022-10-14 14:33:14 +02:00
|
|
|
uuid = { version = "1.2", features = ["v4"] }
|
2021-04-20 22:53:07 +02:00
|
|
|
whoami = "1.1.2"
|
2022-10-21 21:21:14 +02:00
|
|
|
interim = { version = "0.1.0", features = ["chrono"] }
|
2022-05-16 23:14:04 +02:00
|
|
|
config = { version = "0.13", default-features = false, features = ["toml"] }
|
2022-10-14 14:33:14 +02:00
|
|
|
serde = { version = "1.0.145", features = ["derive"] }
|
|
|
|
serde_json = "1.0.86"
|
2021-04-20 22:53:07 +02:00
|
|
|
parse_duration = "2.1.1"
|
2022-10-19 09:39:52 +02:00
|
|
|
async-trait = "0.1.58"
|
2022-10-14 14:33:14 +02:00
|
|
|
itertools = "0.10.5"
|
2021-04-20 22:53:07 +02:00
|
|
|
shellexpand = "2"
|
2022-10-14 12:03:08 +02:00
|
|
|
sqlx = { version = "0.6", features = [
|
2022-03-13 20:53:49 +01:00
|
|
|
"runtime-tokio-rustls",
|
|
|
|
"chrono",
|
|
|
|
"sqlite",
|
|
|
|
] }
|
2021-09-09 12:46:46 +02:00
|
|
|
minspan = "0.1.1"
|
2022-03-18 12:37:27 +01:00
|
|
|
regex = "1.5.4"
|
2023-02-14 08:14:05 +01:00
|
|
|
serde_regex = "1.1.0"
|
2023-02-10 10:34:50 +01:00
|
|
|
fs-err = "2.9"
|
2022-04-23 19:34:41 +02:00
|
|
|
sql-builder = "3"
|
|
|
|
lazy_static = "1"
|
2022-05-09 08:46:52 +02:00
|
|
|
memchr = "2.5"
|
2022-04-22 22:14:23 +02:00
|
|
|
|
|
|
|
# sync
|
|
|
|
urlencoding = { version = "2.1.0", optional = true }
|
|
|
|
sodiumoxide = { version = "0.2.6", optional = true }
|
|
|
|
reqwest = { version = "0.11", features = [
|
|
|
|
"json",
|
2022-10-19 09:39:31 +02:00
|
|
|
"rustls-tls-native-roots",
|
2022-04-22 22:14:23 +02:00
|
|
|
], default-features = false, optional = true }
|
2022-04-25 08:13:30 +02:00
|
|
|
hex = { version = "0.4", optional = true }
|
|
|
|
sha2 = { version = "0.10", optional = true }
|
2022-10-14 12:17:57 +02:00
|
|
|
rmp-serde = { version = "1.1.1", optional = true }
|
2022-12-18 18:53:36 +01:00
|
|
|
base64 = { version = "0.20.0", optional = true }
|
2022-05-20 08:36:53 +02:00
|
|
|
tokio = { version = "1", features = ["full"] }
|
2022-10-14 11:59:21 +02:00
|
|
|
semver = "1.0.14"
|
2022-04-22 22:14:23 +02:00
|
|
|
|
|
|
|
[dev-dependencies]
|
|
|
|
tokio = { version = "1", features = ["full"] }
|