diff options
| author | main <main@swarm.moe> | 2026-03-19 17:41:40 -0400 |
|---|---|---|
| committer | main <main@swarm.moe> | 2026-03-19 17:41:40 -0400 |
| commit | 352fb5f089e74bf47b60c6221594b9c22defe251 (patch) | |
| tree | 2ad1620fcf9e0f138ae950888c925b9f53a19997 /Cargo.toml | |
| parent | 958c7bf261a404a7df99e394997ab10e724cfca7 (diff) | |
| download | fidget_spinner-352fb5f089e74bf47b60c6221594b9c22defe251.zip | |
Prepare fidget spinner for public sharing
Diffstat (limited to 'Cargo.toml')
| -rw-r--r-- | Cargo.toml | 9 |
1 files changed, 9 insertions, 0 deletions
@@ -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] |