swarm repositories / source
aboutsummaryrefslogtreecommitdiff
path: root/Cargo.toml
diff options
context:
space:
mode:
Diffstat (limited to 'Cargo.toml')
-rw-r--r--Cargo.toml9
1 files changed, 9 insertions, 0 deletions
diff --git a/Cargo.toml b/Cargo.toml
index d829377..32172ad 100644
--- a/Cargo.toml
+++ b/Cargo.toml
@@ -7,20 +7,29 @@ members = [
resolver = "3"
[workspace.package]
+categories = ["development-tools", "command-line-utilities"]
+description = "Local-first experimental DAG, MCP server, and research CLI for long-running optimization work."
edition = "2024"
+keywords = ["mcp", "research", "optimization", "dag", "tooling"]
license = "MIT"
+readme = "README.md"
+repository = "https://git.swarm.moe/fidget_spinner.git"
rust-version = "1.94"
version = "0.1.0"
[workspace.dependencies]
+axum = "0.8"
camino = { version = "1", features = ["serde1"] }
clap = { version = "4.5", features = ["derive"] }
dirs = "6"
+linkify = "0.10"
+maud = { version = "0.27", features = ["axum"] }
rusqlite = { version = "0.37", features = ["bundled", "time"] }
serde = { version = "1.0", features = ["derive"] }
serde_json = "1"
thiserror = "2"
time = { version = "0.3", features = ["formatting", "macros", "parsing", "serde"] }
+tokio = { version = "1", features = ["net", "rt-multi-thread"] }
uuid = { version = "1", features = ["serde", "v7"] }
[workspace.lints.rust]