From 0229bc09a6ed4800a064c1a2c23b8654def0c488 Mon Sep 17 00:00:00 2001 From: Matthias Date: Tue, 30 Apr 2024 19:41:11 +0200 Subject: [PATCH] Fix paths to docs --- crates/terraphim-markdown-parser/Cargo.toml | 2 +- crates/terraphim_automata/Cargo.toml | 2 +- .../node/terraphim-automata-node-rs/Cargo.toml | 3 ++- crates/terraphim_config/Cargo.toml | 2 +- crates/terraphim_middleware/Cargo.toml | 3 ++- crates/terraphim_persistence/Cargo.toml | 3 ++- crates/terraphim_rolegraph/Cargo.toml | 2 +- crates/terraphim_service/Cargo.toml | 2 +- crates/terraphim_settings/Cargo.toml | 2 +- crates/terraphim_types/Cargo.toml | 2 +- desktop/src-tauri/Cargo.toml | 2 +- lab/parking-lot/config-settings/Cargo.toml | 2 +- lab/parking-lot/server-poem/Cargo.toml | 2 +- 13 files changed, 16 insertions(+), 13 deletions(-) diff --git a/crates/terraphim-markdown-parser/Cargo.toml b/crates/terraphim-markdown-parser/Cargo.toml index d6fe9f5..c1cce1a 100644 --- a/crates/terraphim-markdown-parser/Cargo.toml +++ b/crates/terraphim-markdown-parser/Cargo.toml @@ -9,7 +9,7 @@ homepage = "https://terraphim.ai" repository = "https://github.com/terraphim/terraphim-ai" keywords = ["personal-assistant", "ai", "privacy", "agent", "terraphim"] license = "Apache-2.0" -readme = "../README.md" +readme = "../../README.md" [dependencies] pulldown-cmark = "0.9.3" diff --git a/crates/terraphim_automata/Cargo.toml b/crates/terraphim_automata/Cargo.toml index 9999091..d2369d3 100644 --- a/crates/terraphim_automata/Cargo.toml +++ b/crates/terraphim_automata/Cargo.toml @@ -9,7 +9,7 @@ homepage = "https://terraphim.ai" repository = "https://github.com/terraphim/terraphim-ai" keywords = ["personal-assistant", "ai", "privacy", "agent", "automata"] license = "Apache-2.0" -readme = "../README.md" +readme = "../../README.md" [dependencies] terraphim_types = { path = "../terraphim_types" } diff --git a/crates/terraphim_automata/node/terraphim-automata-node-rs/Cargo.toml b/crates/terraphim_automata/node/terraphim-automata-node-rs/Cargo.toml index 793f795..a26903b 100644 --- a/crates/terraphim_automata/node/terraphim-automata-node-rs/Cargo.toml +++ b/crates/terraphim_automata/node/terraphim-automata-node-rs/Cargo.toml @@ -10,7 +10,8 @@ documentation = "https://terraphim.ai" homepage = "https://terraphim.ai" repository = "https://github.com/terraphim/terraphim-ai" keywords = ["personal-assistant", "ai", "privacy", "agent", "automata"] -readme = "../README.md" +readme = "../../../../README.md" + [lib] crate-type = ["cdylib"] diff --git a/crates/terraphim_config/Cargo.toml b/crates/terraphim_config/Cargo.toml index 0cf0435..cfecb26 100644 --- a/crates/terraphim_config/Cargo.toml +++ b/crates/terraphim_config/Cargo.toml @@ -9,7 +9,7 @@ homepage = "https://terraphim.ai" repository = "https://github.com/terraphim/terraphim-ai" keywords = ["personal-assistant", "ai", "privacy", "configuration", "config"] license = "Apache-2.0" -readme = "../README.md" +readme = "../../README.md" [[bin]] diff --git a/crates/terraphim_middleware/Cargo.toml b/crates/terraphim_middleware/Cargo.toml index 7ba608c..c3a5c13 100644 --- a/crates/terraphim_middleware/Cargo.toml +++ b/crates/terraphim_middleware/Cargo.toml @@ -9,7 +9,8 @@ homepage = "https://terraphim.ai" repository = "https://github.com/terraphim/terraphim-ai" keywords = ["personal-assistant", "ai", "privacy", "middleware"] license = "Apache-2.0" -readme = "../README.md" +readme = "../../README.md" + [dependencies] terraphim_config = { path = "../terraphim_config" } diff --git a/crates/terraphim_persistence/Cargo.toml b/crates/terraphim_persistence/Cargo.toml index 3239b01..d249528 100644 --- a/crates/terraphim_persistence/Cargo.toml +++ b/crates/terraphim_persistence/Cargo.toml @@ -9,7 +9,8 @@ homepage = "https://terraphim.ai" repository = "https://github.com/terraphim/terraphim-ai" keywords = ["personal-assistant", "ai", "privacy", "persistence", "storage"] license = "Apache-2.0" -readme = "../README.md" +readme = "../../README.md" + [dependencies] terraphim_settings = { path = "../terraphim_settings" } diff --git a/crates/terraphim_rolegraph/Cargo.toml b/crates/terraphim_rolegraph/Cargo.toml index 832ca4d..35c2b77 100644 --- a/crates/terraphim_rolegraph/Cargo.toml +++ b/crates/terraphim_rolegraph/Cargo.toml @@ -9,7 +9,7 @@ homepage = "https://terraphim.ai" repository = "https://github.com/terraphim/terraphim-ai" keywords = ["personal-assistant", "ai", "privacy", "roles", "rolegraph"] license = "Apache-2.0" -readme = "../README.md" +readme = "../../README.md" [dependencies] terraphim_automata = { path = "../terraphim_automata" } diff --git a/crates/terraphim_service/Cargo.toml b/crates/terraphim_service/Cargo.toml index a6be29e..065a306 100644 --- a/crates/terraphim_service/Cargo.toml +++ b/crates/terraphim_service/Cargo.toml @@ -9,7 +9,7 @@ homepage = "https://terraphim.ai" repository = "https://github.com/terraphim/terraphim-ai" keywords = ["personal-assistant", "ai", "privacy", "service"] license = "Apache-2.0" -readme = "../README.md" +readme = "../../README.md" [dependencies] terraphim_persistence = { path = "../terraphim_persistence" } diff --git a/crates/terraphim_settings/Cargo.toml b/crates/terraphim_settings/Cargo.toml index 3cb75ac..c8aa45c 100644 --- a/crates/terraphim_settings/Cargo.toml +++ b/crates/terraphim_settings/Cargo.toml @@ -9,7 +9,7 @@ homepage = "https://terraphim.ai" repository = "https://github.com/terraphim/terraphim-ai" keywords = ["personal-assistant", "ai", "privacy", "settings", "configuration"] license = "Apache-2.0" -readme = "../README.md" +readme = "../../README.md" [dependencies] directories = "5.0.1" diff --git a/crates/terraphim_types/Cargo.toml b/crates/terraphim_types/Cargo.toml index e65388c..ed18c50 100644 --- a/crates/terraphim_types/Cargo.toml +++ b/crates/terraphim_types/Cargo.toml @@ -9,7 +9,7 @@ homepage = "https://terraphim.ai" repository = "https://github.com/terraphim/terraphim-ai" keywords = ["personal-assistant", "ai", "privacy", "agent", "types"] license = "Apache-2.0" -readme = "../README.md" +readme = "../../README.md" [dependencies] ahash = { version = "0.8.8", features = ["serde"] } diff --git a/desktop/src-tauri/Cargo.toml b/desktop/src-tauri/Cargo.toml index d884f70..e5d4296 100644 --- a/desktop/src-tauri/Cargo.toml +++ b/desktop/src-tauri/Cargo.toml @@ -8,7 +8,7 @@ homepage = "https://terraphim.ai" documentation = "https://terraphim.ai" repository = "https://github.com/terraphim/terraphim-ai" keywords = ["personal-assistant", "ai", "privacy", "tauri", "desktop"] -readme = "../README.md" +readme = "../../README.md" edition = "2021" rust-version = "1.57" diff --git a/lab/parking-lot/config-settings/Cargo.toml b/lab/parking-lot/config-settings/Cargo.toml index 8e9c87a..2ee89d9 100644 --- a/lab/parking-lot/config-settings/Cargo.toml +++ b/lab/parking-lot/config-settings/Cargo.toml @@ -9,7 +9,7 @@ homepage = "https://terraphim.ai" repository = "https://github.com/terraphim/terraphim-ai" keywords = ["personal-assistant", "ai", "privacy", "config"] license = "Apache-2.0" -readme = "../README.md" +readme = "../../../README.md" # See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html diff --git a/lab/parking-lot/server-poem/Cargo.toml b/lab/parking-lot/server-poem/Cargo.toml index 5e91b18..994d1bc 100644 --- a/lab/parking-lot/server-poem/Cargo.toml +++ b/lab/parking-lot/server-poem/Cargo.toml @@ -9,7 +9,7 @@ homepage = "https://terraphim.ai" repository = "https://github.com/terraphim/terraphim-ai" keywords = ["personal-assistant", "ai", "privacy", "agent", "automata"] license = "Apache-2.0" -readme = "../README.md" +readme = "../../../README.md" # See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html