diff options
| -rw-r--r-- | Cargo.lock | 22 | ||||
| -rw-r--r-- | Cargo.toml | 2 | ||||
| -rw-r--r-- | crates/atuin-client/Cargo.toml | 2 | ||||
| -rw-r--r-- | crates/atuin-daemon/Cargo.toml | 6 | ||||
| -rw-r--r-- | crates/atuin-dotfiles/Cargo.toml | 4 | ||||
| -rw-r--r-- | crates/atuin-history/Cargo.toml | 2 | ||||
| -rw-r--r-- | crates/atuin-kv/Cargo.toml | 4 | ||||
| -rw-r--r-- | crates/atuin-scripts/Cargo.toml | 4 | ||||
| -rw-r--r-- | crates/atuin-server-database/Cargo.toml | 2 | ||||
| -rw-r--r-- | crates/atuin-server-postgres/Cargo.toml | 4 | ||||
| -rw-r--r-- | crates/atuin-server/Cargo.toml | 4 | ||||
| -rw-r--r-- | crates/atuin/Cargo.toml | 18 |
12 files changed, 37 insertions, 37 deletions
@@ -221,7 +221,7 @@ checksum = "1505bd5d3d116872e7271a6d4e16d81d0c8570876c8de68093a09ac269d8aac0" [[package]] name = "atuin" -version = "18.6.0" +version = "18.6.1" dependencies = [ "arboard", "async-trait", @@ -269,7 +269,7 @@ dependencies = [ [[package]] name = "atuin-client" -version = "18.6.0" +version = "18.6.1" dependencies = [ "async-trait", "atuin-common", @@ -324,7 +324,7 @@ dependencies = [ [[package]] name = "atuin-common" -version = "18.6.0" +version = "18.6.1" dependencies = [ "base64 0.22.1", "directories", @@ -344,7 +344,7 @@ dependencies = [ [[package]] name = "atuin-daemon" -version = "18.6.0" +version = "18.6.1" dependencies = [ "atuin-client", "atuin-dotfiles", @@ -371,7 +371,7 @@ dependencies = [ [[package]] name = "atuin-dotfiles" -version = "18.6.0" +version = "18.6.1" dependencies = [ "atuin-client", "atuin-common", @@ -385,7 +385,7 @@ dependencies = [ [[package]] name = "atuin-history" -version = "18.6.0" +version = "18.6.1" dependencies = [ "atuin-client", "crossterm", @@ -398,7 +398,7 @@ dependencies = [ [[package]] name = "atuin-kv" -version = "18.6.0" +version = "18.6.1" dependencies = [ "atuin-client", "atuin-common", @@ -414,7 +414,7 @@ dependencies = [ [[package]] name = "atuin-scripts" -version = "18.6.0" +version = "18.6.1" dependencies = [ "atuin-client", "atuin-common", @@ -436,7 +436,7 @@ dependencies = [ [[package]] name = "atuin-server" -version = "18.6.0" +version = "18.6.1" dependencies = [ "argon2", "async-trait", @@ -465,7 +465,7 @@ dependencies = [ [[package]] name = "atuin-server-database" -version = "18.6.0" +version = "18.6.1" dependencies = [ "async-trait", "atuin-common", @@ -477,7 +477,7 @@ dependencies = [ [[package]] name = "atuin-server-postgres" -version = "18.6.0" +version = "18.6.1" dependencies = [ "async-trait", "atuin-common", @@ -5,7 +5,7 @@ resolver = "2" exclude = ["ui/backend"] [workspace.package] -version = "18.6.0" +version = "18.6.1" authors = ["Ellie Huxtable <ellie@atuin.sh>"] rust-version = "1.86" license = "MIT" diff --git a/crates/atuin-client/Cargo.toml b/crates/atuin-client/Cargo.toml index 0a68eb2a..5a98f797 100644 --- a/crates/atuin-client/Cargo.toml +++ b/crates/atuin-client/Cargo.toml @@ -19,7 +19,7 @@ daemon = [] check-update = [] [dependencies] -atuin-common = { path = "../atuin-common", version = "18.6.0" } +atuin-common = { path = "../atuin-common", version = "18.6.1" } log = { workspace = true } base64 = { workspace = true } diff --git a/crates/atuin-daemon/Cargo.toml b/crates/atuin-daemon/Cargo.toml index b32c45b2..5c23bb23 100644 --- a/crates/atuin-daemon/Cargo.toml +++ b/crates/atuin-daemon/Cargo.toml @@ -14,9 +14,9 @@ readme.workspace = true # See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html [dependencies] -atuin-client = { path = "../atuin-client", version = "18.6.0" } -atuin-dotfiles = { path = "../atuin-dotfiles", version = "18.6.0" } -atuin-history = { path = "../atuin-history", version = "18.6.0" } +atuin-client = { path = "../atuin-client", version = "18.6.1" } +atuin-dotfiles = { path = "../atuin-dotfiles", version = "18.6.1" } +atuin-history = { path = "../atuin-history", version = "18.6.1" } time = { workspace = true } uuid = { workspace = true } diff --git a/crates/atuin-dotfiles/Cargo.toml b/crates/atuin-dotfiles/Cargo.toml index e67bd418..0bf20920 100644 --- a/crates/atuin-dotfiles/Cargo.toml +++ b/crates/atuin-dotfiles/Cargo.toml @@ -14,8 +14,8 @@ readme.workspace = true # See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html [dependencies] -atuin-common = { path = "../atuin-common", version = "18.6.0" } -atuin-client = { path = "../atuin-client", version = "18.6.0" } +atuin-common = { path = "../atuin-common", version = "18.6.1" } +atuin-client = { path = "../atuin-client", version = "18.6.1" } eyre = { workspace = true } tokio = { workspace = true } diff --git a/crates/atuin-history/Cargo.toml b/crates/atuin-history/Cargo.toml index 8951ed5c..5b901156 100644 --- a/crates/atuin-history/Cargo.toml +++ b/crates/atuin-history/Cargo.toml @@ -14,7 +14,7 @@ readme.workspace = true # See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html [dependencies] -atuin-client = { path = "../atuin-client", version = "18.6.0" } +atuin-client = { path = "../atuin-client", version = "18.6.1" } time = { workspace = true } serde = { workspace = true } diff --git a/crates/atuin-kv/Cargo.toml b/crates/atuin-kv/Cargo.toml index 7a33b09d..3579cf9e 100644 --- a/crates/atuin-kv/Cargo.toml +++ b/crates/atuin-kv/Cargo.toml @@ -14,8 +14,8 @@ readme.workspace = true # See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html [dependencies] -atuin-client = { path = "../atuin-client", version = "18.6.0" } -atuin-common = { path = "../atuin-common", version = "18.6.0" } +atuin-client = { path = "../atuin-client", version = "18.6.1" } +atuin-common = { path = "../atuin-common", version = "18.6.1" } tracing = { workspace = true } tracing-subscriber = { workspace = true } diff --git a/crates/atuin-scripts/Cargo.toml b/crates/atuin-scripts/Cargo.toml index c57c583b..9afeb5b9 100644 --- a/crates/atuin-scripts/Cargo.toml +++ b/crates/atuin-scripts/Cargo.toml @@ -14,8 +14,8 @@ readme.workspace = true # See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html [dependencies] -atuin-client = { path = "../atuin-client", version = "18.6.0" } -atuin-common = { path = "../atuin-common", version = "18.6.0" } +atuin-client = { path = "../atuin-client", version = "18.6.1" } +atuin-common = { path = "../atuin-common", version = "18.6.1" } tracing = { workspace = true } tracing-subscriber = { workspace = true } diff --git a/crates/atuin-server-database/Cargo.toml b/crates/atuin-server-database/Cargo.toml index aad4f0c9..e3e38e3f 100644 --- a/crates/atuin-server-database/Cargo.toml +++ b/crates/atuin-server-database/Cargo.toml @@ -10,7 +10,7 @@ homepage = { workspace = true } repository = { workspace = true } [dependencies] -atuin-common = { path = "../atuin-common", version = "18.6.0" } +atuin-common = { path = "../atuin-common", version = "18.6.1" } tracing = { workspace = true } time = { workspace = true } diff --git a/crates/atuin-server-postgres/Cargo.toml b/crates/atuin-server-postgres/Cargo.toml index 507b0c08..9eccca50 100644 --- a/crates/atuin-server-postgres/Cargo.toml +++ b/crates/atuin-server-postgres/Cargo.toml @@ -10,8 +10,8 @@ homepage = { workspace = true } repository = { workspace = true } [dependencies] -atuin-common = { path = "../atuin-common", version = "18.6.0" } -atuin-server-database = { path = "../atuin-server-database", version = "18.6.0" } +atuin-common = { path = "../atuin-common", version = "18.6.1" } +atuin-server-database = { path = "../atuin-server-database", version = "18.6.1" } eyre = { workspace = true } tracing = { workspace = true } diff --git a/crates/atuin-server/Cargo.toml b/crates/atuin-server/Cargo.toml index c158c46f..53f9d499 100644 --- a/crates/atuin-server/Cargo.toml +++ b/crates/atuin-server/Cargo.toml @@ -11,8 +11,8 @@ homepage = { workspace = true } repository = { workspace = true } [dependencies] -atuin-common = { path = "../atuin-common", version = "18.6.0" } -atuin-server-database = { path = "../atuin-server-database", version = "18.6.0" } +atuin-common = { path = "../atuin-common", version = "18.6.1" } +atuin-server-database = { path = "../atuin-server-database", version = "18.6.1" } tracing = { workspace = true } time = { workspace = true } diff --git a/crates/atuin/Cargo.toml b/crates/atuin/Cargo.toml index c689d00e..487df85a 100644 --- a/crates/atuin/Cargo.toml +++ b/crates/atuin/Cargo.toml @@ -42,15 +42,15 @@ clipboard = ["arboard"] check-update = ["atuin-client/check-update"] [dependencies] -atuin-server-postgres = { path = "../atuin-server-postgres", version = "18.6.0", optional = true } -atuin-server = { path = "../atuin-server", version = "18.6.0", optional = true } -atuin-client = { path = "../atuin-client", version = "18.6.0", optional = true, default-features = false } -atuin-common = { path = "../atuin-common", version = "18.6.0" } -atuin-dotfiles = { path = "../atuin-dotfiles", version = "18.6.0" } -atuin-history = { path = "../atuin-history", version = "18.6.0" } -atuin-daemon = { path = "../atuin-daemon", version = "18.6.0", optional = true, default-features = false } -atuin-scripts = { path = "../atuin-scripts", version = "18.6.0" } -atuin-kv = { path = "../atuin-kv", version = "18.6.0" } +atuin-server-postgres = { path = "../atuin-server-postgres", version = "18.6.1", optional = true } +atuin-server = { path = "../atuin-server", version = "18.6.1", optional = true } +atuin-client = { path = "../atuin-client", version = "18.6.1", optional = true, default-features = false } +atuin-common = { path = "../atuin-common", version = "18.6.1" } +atuin-dotfiles = { path = "../atuin-dotfiles", version = "18.6.1" } +atuin-history = { path = "../atuin-history", version = "18.6.1" } +atuin-daemon = { path = "../atuin-daemon", version = "18.6.1", optional = true, default-features = false } +atuin-scripts = { path = "../atuin-scripts", version = "18.6.1" } +atuin-kv = { path = "../atuin-kv", version = "18.6.1" } log = { workspace = true } time = { workspace = true } |
