From 2dbd42163aa88c62ea69a1a2cfc8fe5cc1c90fcf Mon Sep 17 00:00:00 2001 From: Paul Campbell Date: Tue, 21 May 2024 20:00:42 +0100 Subject: [PATCH] docs(readme): add diagram showing crate dependencies --- README.md | 13 +++++++++++++ 1 file changed, 13 insertions(+) diff --git a/README.md b/README.md index d5d1078..bde3241 100644 --- a/README.md +++ b/README.md @@ -182,6 +182,19 @@ If you'd like to contribute code, feel free to submit a merge request. Before you start committing, run the `just install-hooks` command to setup the Git Hooks. ([Get Just](https://just.systems/man/en/chapter_3.html)) +## Crate Dependency + +The following diagram shows the dependency between the crates that make up `git-next`: + +```mermaid +stateDiagram-v2 + cli --> server + cli --> git + server --> config + server --> git + git --> config +``` + ## License `git-next` is released under the [MIT License](./LICENSE).