From 8ee6cbefbd71452bfd171955f5bc60321e2c26b5 Mon Sep 17 00:00:00 2001 From: marisa Date: Sun, 28 Jan 2024 19:34:56 -0300 Subject: [PATCH] Initial commit --- .gitignore | 16 ++++++++++++++++ LICENSE | 7 +++++++ dub.sdl | 9 +++++++++ dub.selections.json | 15 +++++++++++++++ source/main.d | 5 +++++ 5 files changed, 52 insertions(+) create mode 100644 .gitignore create mode 100644 LICENSE create mode 100644 dub.sdl create mode 100644 dub.selections.json create mode 100644 source/main.d diff --git a/.gitignore b/.gitignore new file mode 100644 index 0000000..0ae8bf1 --- /dev/null +++ b/.gitignore @@ -0,0 +1,16 @@ +.dub +docs.json +__dummy.html +docs/ +/apd +apd.so +apd.dylib +apd.dll +apd.a +apd.lib +apd-test-* +*.exe +*.pdb +*.o +*.obj +*.lst diff --git a/LICENSE b/LICENSE new file mode 100644 index 0000000..08d719e --- /dev/null +++ b/LICENSE @@ -0,0 +1,7 @@ +Copyright 2023-2024 Juny + +Permission is hereby granted, free of charge, to any person obtaining a copy of this software and associated documentation files (the “Software”), to deal in the Software without restriction, including without limitation the rights to use, copy, modify, merge, publish, distribute, sublicense, and/or sell copies of the Software, and to permit persons to whom the Software is furnished to do so, subject to the following conditions: + +The above copyright notice and this permission notice shall be included in all copies or substantial portions of the Software. + +THE SOFTWARE IS PROVIDED “AS IS”, WITHOUT WARRANTY OF ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE. \ No newline at end of file diff --git a/dub.sdl b/dub.sdl new file mode 100644 index 0000000..5fee874 --- /dev/null +++ b/dub.sdl @@ -0,0 +1,9 @@ +name "apd" +description "Minimal ActivityPub D implementation" +authors "Marisa" +copyright "Copyright © 2024, Marisa" +license "MIT" +dependency "slf4d" version="~>3.0.0" +dependency "handy-httpd" version="~>8.2.0" +dependency "hibernated" version="~>0.4.0" +dependency "requests" version="~>2.1.3" diff --git a/dub.selections.json b/dub.selections.json new file mode 100644 index 0000000..54aa1f5 --- /dev/null +++ b/dub.selections.json @@ -0,0 +1,15 @@ +{ + "fileVersion": 1, + "versions": { + "automem": "0.6.9", + "cachetools": "0.4.1", + "handy-httpd": "8.2.0", + "httparsed": "1.2.1", + "path-matcher": "1.1.3", + "requests": "2.1.3", + "slf4d": "3.0.0", + "streams": "3.5.0", + "test_allocator": "0.3.4", + "unit-threaded": "0.10.8" + } +} diff --git a/source/main.d b/source/main.d new file mode 100644 index 0000000..a9038e4 --- /dev/null +++ b/source/main.d @@ -0,0 +1,5 @@ +module main; + +void main() { + +}