2021-04-20 22:53:07 +02:00
|
|
|
[package]
|
|
|
|
name = "atuin-client"
|
|
|
|
edition = "2018"
|
|
|
|
description = "client library for atuin"
|
2023-04-14 21:18:58 +02:00
|
|
|
|
|
|
|
version = { workspace = true }
|
|
|
|
authors = { workspace = true }
|
|
|
|
license = { workspace = true }
|
|
|
|
homepage = { workspace = true }
|
|
|
|
repository = { workspace = true }
|
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",
|
|
|
|
"reqwest",
|
2022-04-25 08:13:30 +02:00
|
|
|
"sha2",
|
|
|
|
"hex",
|
2023-04-17 22:12:02 +02:00
|
|
|
"generic-array",
|
|
|
|
"xsalsa20poly1305",
|
2022-04-22 22:14:23 +02:00
|
|
|
]
|
|
|
|
|
2021-04-20 22:53:07 +02:00
|
|
|
[dependencies]
|
2023-05-28 20:39:45 +02:00
|
|
|
atuin-common = { path = "../atuin-common", version = "15.0.0" }
|
2021-04-20 22:53:07 +02:00
|
|
|
|
2023-04-14 21:18:58 +02:00
|
|
|
log = { workspace = true }
|
2023-06-26 08:52:37 +02:00
|
|
|
base64 = { workspace = true }
|
2023-04-14 21:18:58 +02:00
|
|
|
chrono = { workspace = true }
|
|
|
|
clap = { workspace = true }
|
|
|
|
eyre = { workspace = true }
|
|
|
|
directories = { workspace = true }
|
|
|
|
uuid = { workspace = true }
|
|
|
|
whoami = { workspace = true }
|
|
|
|
interim = { workspace = true }
|
|
|
|
config = { workspace = true }
|
|
|
|
serde = { workspace = true }
|
|
|
|
serde_json = { workspace = true }
|
2021-04-20 22:53:07 +02:00
|
|
|
parse_duration = "2.1.1"
|
2023-04-14 21:18:58 +02:00
|
|
|
async-trait = { workspace = true }
|
|
|
|
itertools = { workspace = true }
|
2023-06-13 09:43:06 +02:00
|
|
|
rand = { workspace = true }
|
2021-04-20 22:53:07 +02:00
|
|
|
shellexpand = "2"
|
2023-04-14 21:18:58 +02:00
|
|
|
sqlx = { workspace = true, features = ["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-04-14 21:18:58 +02:00
|
|
|
fs-err = { workspace = true }
|
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"
|
2023-06-15 12:29:40 +02:00
|
|
|
rmp = { version = "0.8.11" }
|
|
|
|
typed-builder = "0.14.0"
|
2023-06-26 08:52:37 +02:00
|
|
|
tokio = { workspace = true }
|
|
|
|
semver = { workspace = true }
|
|
|
|
|
|
|
|
# encryption
|
|
|
|
rusty_paseto = { version = "0.5.0", default-features = false }
|
|
|
|
rusty_paserk = { version = "0.2.0", default-features = false, features = ["v4", "serde"] }
|
2022-04-22 22:14:23 +02:00
|
|
|
|
|
|
|
# sync
|
|
|
|
urlencoding = { version = "2.1.0", optional = true }
|
2023-04-14 21:18:58 +02:00
|
|
|
reqwest = { workspace = true, optional = true }
|
2022-04-25 08:13:30 +02:00
|
|
|
hex = { version = "0.4", optional = true }
|
|
|
|
sha2 = { version = "0.10", optional = true }
|
2023-04-17 22:12:02 +02:00
|
|
|
xsalsa20poly1305 = { version = "0.9.0", optional = true }
|
|
|
|
generic-array = { version = "0.14", optional = true, features = ["serde"] }
|
2022-04-22 22:14:23 +02:00
|
|
|
|
|
|
|
[dev-dependencies]
|
|
|
|
tokio = { version = "1", features = ["full"] }
|