aboutsummaryrefslogtreecommitdiffstats
path: root/Cargo.lock
diff options
context:
space:
mode:
authorMichelle Tilley <michelle@michelletilley.net>2026-03-12 14:52:15 -0700
committerGitHub <noreply@github.com>2026-03-12 14:52:15 -0700
commitf7431afe2f0b424b6dcd0a76138607857563e008 (patch)
tree2557c66400371ba2d353fbf847406c4028c3aafa /Cargo.lock
parentchore: update changelog (diff)
downloadatuin-f7431afe2f0b424b6dcd0a76138607857563e008.zip
feat: Add `atuin setup` (#3257)
Diffstat (limited to 'Cargo.lock')
-rw-r--r--Cargo.lock31
1 files changed, 30 insertions, 1 deletions
diff --git a/Cargo.lock b/Cargo.lock
index 368f4c3f..88180998 100644
--- a/Cargo.lock
+++ b/Cargo.lock
@@ -265,6 +265,7 @@ dependencies = [
"time",
"tiny-bip39",
"tokio",
+ "toml_edit",
"tracing",
"tracing-appender",
"tracing-subscriber",
@@ -5335,7 +5336,7 @@ checksum = "cf92845e79fc2e2def6a5d828f0801e29a2f8acc037becc5ab08595c7d5e9863"
dependencies = [
"serde_core",
"serde_spanned",
- "toml_datetime",
+ "toml_datetime 0.7.5+spec-1.1.0",
"toml_parser",
"winnow",
]
@@ -5350,6 +5351,28 @@ dependencies = [
]
[[package]]
+name = "toml_datetime"
+version = "1.0.0+spec-1.1.0"
+source = "registry+https://github.com/rust-lang/crates.io-index"
+checksum = "32c2555c699578a4f59f0cc68e5116c8d7cabbd45e1409b989d4be085b53f13e"
+dependencies = [
+ "serde_core",
+]
+
+[[package]]
+name = "toml_edit"
+version = "0.25.4+spec-1.1.0"
+source = "registry+https://github.com/rust-lang/crates.io-index"
+checksum = "7193cbd0ce53dc966037f54351dbbcf0d5a642c7f0038c382ef9e677ce8c13f2"
+dependencies = [
+ "indexmap 2.13.0",
+ "toml_datetime 1.0.0+spec-1.1.0",
+ "toml_parser",
+ "toml_writer",
+ "winnow",
+]
+
+[[package]]
name = "toml_parser"
version = "1.0.9+spec-1.1.0"
source = "registry+https://github.com/rust-lang/crates.io-index"
@@ -5359,6 +5382,12 @@ dependencies = [
]
[[package]]
+name = "toml_writer"
+version = "1.0.6+spec-1.1.0"
+source = "registry+https://github.com/rust-lang/crates.io-index"
+checksum = "ab16f14aed21ee8bfd8ec22513f7287cd4a91aa92e44edfe2c17ddd004e92607"
+
+[[package]]
name = "tonic"
version = "0.14.5"
source = "registry+https://github.com/rust-lang/crates.io-index"