diff options
author | Christoph Honal <christoph.honal@web.de> | 2021-12-19 19:23:30 +0100 |
---|---|---|
committer | Christoph Honal <christoph.honal@web.de> | 2021-12-19 19:23:30 +0100 |
commit | a0ce4cf48e3a817b5175efe58c5fe8db9575e975 (patch) | |
tree | 51428a74fe7bfbdcb002adfae7826ff03c275044 | |
parent | Merge pull request #189 from ilkondr/ilkondr/fix_includes (diff) | |
download | tiny-AES-c-a0ce4cf48e3a817b5175efe58c5fe8db9575e975.tar tiny-AES-c-a0ce4cf48e3a817b5175efe58c5fe8db9575e975.tar.gz tiny-AES-c-a0ce4cf48e3a817b5175efe58c5fe8db9575e975.tar.bz2 tiny-AES-c-a0ce4cf48e3a817b5175efe58c5fe8db9575e975.tar.lz tiny-AES-c-a0ce4cf48e3a817b5175efe58c5fe8db9575e975.tar.xz tiny-AES-c-a0ce4cf48e3a817b5175efe58c5fe8db9575e975.tar.zst tiny-AES-c-a0ce4cf48e3a817b5175efe58c5fe8db9575e975.zip |
-rw-r--r-- | library.json | 28 |
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/>" + } } |