aboutsummaryrefslogtreecommitdiffstats
path: root/crates/client/Cargo.toml
diff options
context:
space:
mode:
Diffstat (limited to '')
-rw-r--r--crates/client/Cargo.toml51
1 files changed, 51 insertions, 0 deletions
diff --git a/crates/client/Cargo.toml b/crates/client/Cargo.toml
new file mode 100644
index 00000000..957476fb
--- /dev/null
+++ b/crates/client/Cargo.toml
@@ -0,0 +1,51 @@
+[package]
+name = "turtle-client"
+description = "turtle - atuin shell history fork"
+edition.workspace = true
+version.workspace = true
+authors.workspace = true
+rust-version.workspace = true
+license.workspace = true
+repository.workspace = true
+
+[[bin]]
+name = "turtle"
+path = "src/main.rs"
+
+[dependencies]
+clap = { workspace = true }
+clap_complete = { workspace = true }
+clap_complete_nushell = { workspace = true }
+colored = { workspace = true }
+config = { workspace = true }
+crossterm = { workspace = true }
+eyre = { workspace = true }
+fs-err = { workspace = true }
+interim = { workspace = true }
+log = { workspace = true }
+regex = { workspace = true }
+runtime-format = { workspace = true }
+rustix = { workspace = true }
+serde = { workspace = true }
+serde_json = { workspace = true }
+serde_regex = { workspace = true }
+serde_with = { workspace = true }
+shellexpand = { workspace = true }
+time = { workspace = true }
+tokio = { workspace = true }
+toml_edit = { workspace = true }
+tracing = { workspace = true }
+tracing-subscriber = { workspace = true }
+turtle-api = { workspace = true }
+turtle-common = { workspace = true }
+unicode-segmentation = { workspace = true }
+
+[dev-dependencies]
+
+[build-dependencies]
+
+[package.metadata.docs.rs]
+all-features = true
+
+[lints]
+workspace = true