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