From 4e4920e78233f2e050e2b1d4ee5b6372ff27dd51 Mon Sep 17 00:00:00 2001 From: Emil Lerch Date: Thu, 14 Sep 2023 14:05:35 -0700 Subject: [PATCH] add dependency tree --- README.md | 47 +++++++++++++++++++++++++++++++++++++++++++++++ 1 file changed, 47 insertions(+) diff --git a/README.md b/README.md index deaad34..1bf777a 100644 --- a/README.md +++ b/README.md @@ -356,3 +356,50 @@ wafv2 wellarchitected worklink ``` + +Dependency tree +--------------- + +No dependencies: + * aws_authentication: base structure for credentials (only one type) + * aws_http_base: contains basic structures for http requests/results + * case: provides functions to change casing + * date: provides limited date manipulation functions + * http_client_17015_issue: zig 0.11 http client, with changes + * json: custom version of earlier stdlib json parser + * xml: custom xml parser library + * url: custom url encoding + +aws_credentials: Allows credential handling + aws_authentication + +aws_http: + http_client_17015_issue + aws_http_base + aws_signing + +aws_signing: handles signing of http requests + aws_http_base + aws_authentication + date + +aws: main usage point for libraries + aws_http + json + url + case + date + servicemodel + xml_shaper + aws_credentials + aws_authentication + +main: main entrypoint for demo executable + aws + +servicemodel: Provides access to all aws service generated models + all generated model files + +xml_shaper: Manages interface from xml to in memory structures + xml + date