From e5df809dd29b0fc73cb39b9debd3180b174e6bf5 Mon Sep 17 00:00:00 2001 From: noyez Date: Fri, 20 May 2022 02:36:53 -0400 Subject: Noyez zsh histdb import (#393) * Attempting to implement zsh-histdb import Import compiles passes tests, but doesn't run b/c of async runtime. zsh-histdb uses sqlite, and sqlx-rs is async, but import code is sync. * More working on importing histdb * Rewriting tests and using `Vec` instead of `String` - Rewriting tests to eliminate depencency on local file system - Using `Vec` for command strings instead of `String` to eliminate the utf8 errors i was seeing previously. Seems to be working. * Running fmt Co-authored-by: Bradley Noyes --- atuin-client/Cargo.toml | 1 + 1 file changed, 1 insertion(+) (limited to 'atuin-client/Cargo.toml') diff --git a/atuin-client/Cargo.toml b/atuin-client/Cargo.toml index b1dd8be8..62e79848 100644 --- a/atuin-client/Cargo.toml +++ b/atuin-client/Cargo.toml @@ -62,6 +62,7 @@ hex = { version = "0.4", optional = true } sha2 = { version = "0.10", optional = true } rmp-serde = { version = "1.0.0", optional = true } base64 = { version = "0.13.0", optional = true } +tokio = { version = "1", features = ["full"] } [dev-dependencies] tokio = { version = "1", features = ["full"] } -- cgit v1.3.1