From 2816b3f0aec419d9db99d1a73b560d65834fae01 Mon Sep 17 00:00:00 2001
From: Olaf Bergmann <bergmann@tzi.org>
Date: Mon, 16 Dec 2024 15:17:46 +0100
Subject: [PATCH] [manifest] initial version of idf_component.yml

---
 idf_component.yml | 36 ++++++++++++++++++++++++++++++++++++
 1 file changed, 36 insertions(+)
 create mode 100644 idf_component.yml

diff --git a/idf_component.yml b/idf_component.yml
new file mode 100644
index 0000000..e52b48f
--- /dev/null
+++ b/idf_component.yml
@@ -0,0 +1,36 @@
+version: "0.2.0"
+license: "MIT"
+description: "Authenticated Authorization for the Internet of Things"
+url: "https://dcaf.science"
+repository: "https://gitlab.informatik.uni-bremen.de/DCAF/dcaf-esp-component.git"
+
+targets:
+  - esp32
+  - esp32s2
+  - esp32c3
+
+dependencies:
+  idf: '>=5.3'
+  libcoap: '>=4.3.5~2'
+  lwip:
+    require: private
+  mbedtls:
+    require: private
+  dcaf_upstream:
+    git: "https://gitlab.informatik.uni-bremen.de/DCAF/dcaf.git"
+
+files:
+   exclude:
+      - "*~"            # Exclude all editor backup files
+      - "\#*\#"         # Exclude all editor backup files
+      - "TAGS"          # Exclude `.list` files in all directories
+      - "**/tests"
+      - "**/examples"
+   include:
+      - "README.md"
+      - "AUTHORS"
+      - "LICENSE"
+      - "Kconfig"
+      - "port/**/*"
+      - "include/**/*"
+      
-- 
GitLab