diff options
Diffstat (limited to '')
| -rw-r--r-- | Cargo.lock | 44 | ||||
| -rw-r--r-- | crates/client/Cargo.toml | 6 |
2 files changed, 27 insertions, 23 deletions
@@ -3919,7 +3919,28 @@ source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "e421abadd41a4225275504ea4d6566923418b7f05506fbc9c0fe86ba7396114b" [[package]] -name = "turtle" +name = "turtle-api" +version = "20.0.0" +dependencies = [ + "eyre", + "hyper-util", + "prost", + "protox", + "regex", + "sqlx", + "time", + "tokio", + "tonic", + "tonic-prost", + "tonic-prost-build", + "tower", + "turtle-common", + "typed-builder", + "uuid", +] + +[[package]] +name = "turtle-client" version = "20.0.0" dependencies = [ "clap", @@ -3951,27 +3972,6 @@ dependencies = [ ] [[package]] -name = "turtle-api" -version = "20.0.0" -dependencies = [ - "eyre", - "hyper-util", - "prost", - "protox", - "regex", - "sqlx", - "time", - "tokio", - "tonic", - "tonic-prost", - "tonic-prost-build", - "tower", - "turtle-common", - "typed-builder", - "uuid", -] - -[[package]] name = "turtle-common" version = "20.0.0" dependencies = [ diff --git a/crates/client/Cargo.toml b/crates/client/Cargo.toml index ed818233..957476fb 100644 --- a/crates/client/Cargo.toml +++ b/crates/client/Cargo.toml @@ -1,5 +1,5 @@ [package] -name = "turtle" +name = "turtle-client" description = "turtle - atuin shell history fork" edition.workspace = true version.workspace = true @@ -8,6 +8,10 @@ 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 } |
