summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorkokke <spam@rowdy.dk>2021-12-22 09:16:09 +0100
committerGitHub <noreply@github.com>2021-12-22 09:16:09 +0100
commitf06ac37fc31dfdaca2e0d9bec83f90d5663c319b (patch)
tree51428a74fe7bfbdcb002adfae7826ff03c275044
parentMerge pull request #189 from ilkondr/ilkondr/fix_includes (diff)
parentExclude tests from build in library.json for PlatfomIO (diff)
downloadtiny-AES-c-f06ac37fc31dfdaca2e0d9bec83f90d5663c319b.tar
tiny-AES-c-f06ac37fc31dfdaca2e0d9bec83f90d5663c319b.tar.gz
tiny-AES-c-f06ac37fc31dfdaca2e0d9bec83f90d5663c319b.tar.bz2
tiny-AES-c-f06ac37fc31dfdaca2e0d9bec83f90d5663c319b.tar.lz
tiny-AES-c-f06ac37fc31dfdaca2e0d9bec83f90d5663c319b.tar.xz
tiny-AES-c-f06ac37fc31dfdaca2e0d9bec83f90d5663c319b.tar.zst
tiny-AES-c-f06ac37fc31dfdaca2e0d9bec83f90d5663c319b.zip
-rw-r--r--library.json28
1 files changed, 17 insertions, 11 deletions
diff --git a/library.json b/library.json
index d7abe89..c3acc24 100644
--- a/library.json
+++ b/library.json
@@ -1,13 +1,19 @@
{
- "name": "tiny-AES-c",
- "keywords": "cryptography, aes",
- "description": "Small portable AES128/192/256 in C",
- "repository":
- {
- "type": "git",
- "url": "https://github.com/kokke/tiny-AES-c.git"
- },
- "frameworks": "*",
- "platforms": "*",
- "examples": "test.c"
+ "version": "1.0.0",
+ "name": "tiny-AES-c",
+ "keywords": "cryptography, aes",
+ "description": "Small portable AES128/192/256 in C",
+ "repository":
+ {
+ "type": "git",
+ "branch": "master",
+ "url": "https://github.com/kokke/tiny-AES-c.git"
+ },
+ "frameworks": "*",
+ "platforms": "*",
+ "examples": "test.c",
+ "build":
+ {
+ "srcFilter": "+<*> -<.git/> -<test.c> -<test.cpp> -<test_package/>"
+ }
}