aboutsummaryrefslogtreecommitdiffstats
path: root/crates
diff options
context:
space:
mode:
Diffstat (limited to '')
-rw-r--r--crates/client/Cargo.toml17
-rw-r--r--crates/common/Cargo.toml15
-rw-r--r--crates/daemon/Cargo.toml15
-rw-r--r--crates/server/Cargo.toml15
-rw-r--r--crates/turtle/Cargo.toml15
5 files changed, 31 insertions, 46 deletions
diff --git a/crates/client/Cargo.toml b/crates/client/Cargo.toml
index b8038714..ed818233 100644
--- a/crates/client/Cargo.toml
+++ b/crates/client/Cargo.toml
@@ -1,15 +1,12 @@
[package]
name = "turtle"
-edition = "2024"
-description = "atuin - magical shell history"
-readme = "./README.md"
-
-rust-version = { workspace = true }
-version = { workspace = true }
-authors = { workspace = true }
-license = { workspace = true }
-homepage = { workspace = true }
-repository = { workspace = true }
+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
[dependencies]
clap = { workspace = true }
diff --git a/crates/common/Cargo.toml b/crates/common/Cargo.toml
index e25dd3d3..caf36444 100644
--- a/crates/common/Cargo.toml
+++ b/crates/common/Cargo.toml
@@ -1,15 +1,12 @@
[package]
name = "turtle-common"
-edition = "2024"
description = "common definitions and types needed by all the turtle-* crates"
-readme = "./README.md"
-
-rust-version = { workspace = true }
-version = { workspace = true }
-authors = { workspace = true }
-license = { workspace = true }
-homepage = { workspace = true }
-repository = { workspace = true }
+edition.workspace = true
+version.workspace = true
+authors.workspace = true
+rust-version.workspace = true
+license.workspace = true
+repository.workspace = true
[dependencies]
directories = { workspace = true }
diff --git a/crates/daemon/Cargo.toml b/crates/daemon/Cargo.toml
index e514ee03..2dad72bc 100644
--- a/crates/daemon/Cargo.toml
+++ b/crates/daemon/Cargo.toml
@@ -1,15 +1,12 @@
[package]
name = "turtle-daemon"
-edition = "2024"
description = "daemon, that controls the history db"
-readme = "./README.md"
-
-rust-version = { workspace = true }
-version = { workspace = true }
-authors = { workspace = true }
-license = { workspace = true }
-homepage = { workspace = true }
-repository = { workspace = true }
+edition.workspace = true
+version.workspace = true
+authors.workspace = true
+rust-version.workspace = true
+license.workspace = true
+repository.workspace = true
[dependencies]
base64 = { workspace = true }
diff --git a/crates/server/Cargo.toml b/crates/server/Cargo.toml
index 81aabbf8..32587101 100644
--- a/crates/server/Cargo.toml
+++ b/crates/server/Cargo.toml
@@ -1,15 +1,12 @@
[package]
name = "turtle-server"
-edition = "2024"
description = "sync server for turtle history db"
-readme = "./README.md"
-
-rust-version = { workspace = true }
-version = { workspace = true }
-authors = { workspace = true }
-license = { workspace = true }
-homepage = { workspace = true }
-repository = { workspace = true }
+edition.workspace = true
+version.workspace = true
+authors.workspace = true
+rust-version.workspace = true
+license.workspace = true
+repository.workspace = true
[dependencies]
tracing-subscriber = { workspace = true }
diff --git a/crates/turtle/Cargo.toml b/crates/turtle/Cargo.toml
index 3ad7340f..5d438c54 100644
--- a/crates/turtle/Cargo.toml
+++ b/crates/turtle/Cargo.toml
@@ -1,15 +1,12 @@
[package]
name = "turtle-api"
-edition = "2024"
description = "turtle - library for sqlite shell history"
-readme = "./README.md"
-
-rust-version = { workspace = true }
-version = { workspace = true }
-authors = { workspace = true }
-license = { workspace = true }
-homepage = { workspace = true }
-repository = { workspace = true }
+edition.workspace = true
+version.workspace = true
+authors.workspace = true
+rust-version.workspace = true
+license.workspace = true
+repository.workspace = true
[dependencies]
uuid = { workspace = true }