2021-04-20 22:53:07 +02:00
|
|
|
[package]
|
|
|
|
name = "atuin-client"
|
2023-07-08 22:11:25 +02:00
|
|
|
edition = "2021"
|
2021-04-20 22:53:07 +02:00
|
|
|
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"]
|
2023-08-07 13:06:48 +02:00
|
|
|
sync = ["urlencoding", "reqwest", "sha2", "hex"]
|
2022-04-22 22:14:23 +02:00
|
|
|
|
2021-04-20 22:53:07 +02:00
|
|
|
[dependencies]
|
2023-08-07 12:18:39 +02:00
|
|
|
atuin-common = { path = "../atuin-common", version = "16.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"
|
2023-07-14 20:41:20 +02:00
|
|
|
regex = "1.9.1"
|
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 }
|
2023-07-14 21:44:08 +02:00
|
|
|
futures = "0.3"
|
2023-08-07 13:06:48 +02:00
|
|
|
xsalsa20poly1305 = "0.9.0"
|
|
|
|
generic-array = { version = "0.14", features = ["serde"] }
|
2023-06-26 08:52:37 +02:00
|
|
|
|
|
|
|
# encryption
|
|
|
|
rusty_paseto = { version = "0.5.0", default-features = false }
|
2023-07-14 21:44:08 +02:00
|
|
|
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 }
|
2022-04-22 22:14:23 +02:00
|
|
|
|
|
|
|
[dev-dependencies]
|
|
|
|
tokio = { version = "1", features = ["full"] }
|
2023-07-14 21:44:08 +02:00
|
|
|
pretty_assertions = { workspace = true }
|