From 434a07b7c85e4847f283a75779a4cee7df400433 Mon Sep 17 00:00:00 2001 From: Norayr Chilingarian Date: Sat, 20 Jul 2024 17:11:21 +0400 Subject: [PATCH] added http, base64 --- base64.json | 16 ++++++++++++++++ http.json | 23 +++++++++++++++++++++++ 2 files changed, 39 insertions(+) create mode 100644 base64.json create mode 100644 http.json diff --git a/base64.json b/base64.json new file mode 100644 index 0000000..05faf5d --- /dev/null +++ b/base64.json @@ -0,0 +1,16 @@ +{ + "Package": "base64", + "Author": "noch", + "License": "GPL-3", + "Version": "0.1", + "Remote": + { + "type": "git", + "path": "https://github.com/norayr/base64", + "tag" : "0.1" + }, + "Build": + [ + {"command": "voc -s", "file": "src/Base64.Mod"} + ] +} diff --git a/http.json b/http.json new file mode 100644 index 0000000..745c355 --- /dev/null +++ b/http.json @@ -0,0 +1,23 @@ +{ + "Package": "http", + "Author": "noch", + "License": "GPL-3", + "Version": "0.1", + "Remote": + { + "type": "git", + "path": "https://github.com/norayr/http", + "tag" : "0.1" + }, + "Dependencies": + { + "strutils": "0.1", + "base64": "0.1", + "Internet": "0.1" + }, + "Build": + [ + {"command": "voc -s", "file": "src/hexIntStr.Mod"}, + {"command": "voc -s", "file": "src/http.Mod"} + ] +}