From 9731f35b605622920ee9315ef8da246ab2c29c05 Mon Sep 17 00:00:00 2001 From: Moonrise <70655051+PetitPotiron@users.noreply.github.com> Date: Tue, 17 May 2022 19:07:59 +0200 Subject: [PATCH] Delete src directory --- src/javascript/algorithm/README.md | 32 ---------------- src/javascript/algorithm/decode.js | 38 ------------------- src/javascript/algorithm/encode.js | 35 ------------------ src/javascript/library/README.md | 33 ----------------- src/javascript/library/yocrypt/README.md | 33 ----------------- src/javascript/library/yocrypt/decode.js | 41 --------------------- src/javascript/library/yocrypt/encode.js | 38 ------------------- src/javascript/library/yocrypt/index.js | 2 - src/javascript/library/yocrypt/package.json | 25 ------------- src/python/algorithm/README.md | 31 ---------------- src/python/algorithm/decode.py | 27 -------------- src/python/algorithm/encode.py | 28 -------------- src/python/library/README.md | 33 ----------------- src/python/library/setup.py | 15 -------- src/python/library/tests.py | 18 --------- src/python/library/yocrypt/README.md | 33 ----------------- src/python/library/yocrypt/__init__.py | 2 - src/python/library/yocrypt/decode.py | 38 ------------------- src/python/library/yocrypt/encode.py | 36 ------------------ src/rust/algorithm/README.md | 1 - src/rust/library/README.md | 1 - 21 files changed, 540 deletions(-) delete mode 100644 src/javascript/algorithm/README.md delete mode 100644 src/javascript/algorithm/decode.js delete mode 100644 src/javascript/algorithm/encode.js delete mode 100644 src/javascript/library/README.md delete mode 100644 src/javascript/library/yocrypt/README.md delete mode 100644 src/javascript/library/yocrypt/decode.js delete mode 100644 src/javascript/library/yocrypt/encode.js delete mode 100644 src/javascript/library/yocrypt/index.js delete mode 100644 src/javascript/library/yocrypt/package.json delete mode 100644 src/python/algorithm/README.md delete mode 100644 src/python/algorithm/decode.py delete mode 100644 src/python/algorithm/encode.py delete mode 100644 src/python/library/README.md delete mode 100644 src/python/library/setup.py delete mode 100644 src/python/library/tests.py delete mode 100644 src/python/library/yocrypt/README.md delete mode 100644 src/python/library/yocrypt/__init__.py delete mode 100644 src/python/library/yocrypt/decode.py delete mode 100644 src/python/library/yocrypt/encode.py delete mode 100644 src/rust/algorithm/README.md delete mode 100644 src/rust/library/README.md diff --git a/src/javascript/algorithm/README.md b/src/javascript/algorithm/README.md deleted file mode 100644 index 1cb6a0f..0000000 --- a/src/javascript/algorithm/README.md +++ /dev/null @@ -1,32 +0,0 @@ -# YoCrypt algorithm written in JavaScript -YoCrypt is a new way to encode and decode text symetrically. It works with a key and is a variation of the [Caesar cipher](https://en.wikipedia.org/wiki/Caesar_cipher). If you want to know more about YoCrypt, check out the [GitHub](https://github.com/PetitPotiron/YoCrypt). - -The files located in this directory implement the YoCrypt algorithm in JavaScript. Note that their usage only works with `argv` (command-line passed arguments) as described below. - -* [Usage](#usage) -* * [Encoding](#encoding) -* * [Decoding](#decoding) -* [To go further...](#to-go-further) - - -[![Discord server for help](https://discord.com/api/guilds/800032961525317693/embed.png)](https://discord.gg/t2dxrXMKya) - -## Usage -### Encoding -To encode a text using YoCrypt, run the `encode.js` file located in this directory, and pass the text to encode via `argv` : - -``` -user@computer:~ $ node encode.js "hello my name is john doe" -hello ud zmbm ne vdps pat -``` - -### Decoding -To decode a text using YoCrypt, run the `decode.js` file located in this directory, and pass the text to decode via `argv` : - -``` -user@computer:~ $ node decode.js "hello ud zmbm ne vdps pat" -hello my name is john doe -``` - -## To go further... -If you want to go further through the uses of the algorithm, take a look at the **library** ([on GitHub](httos://github.com/PetitPotiron/YoCrypt/src/javascript/library) and [on NPMjs](https://www.npmjs.com/package/yocrypt)) and the [documentation](https://yocrypt.readthedocs.io). You can also check out the [GitHub](https://github.com/PetitPotiron/YoCrypt). \ No newline at end of file diff --git a/src/javascript/algorithm/decode.js b/src/javascript/algorithm/decode.js deleted file mode 100644 index 528da70..0000000 --- a/src/javascript/algorithm/decode.js +++ /dev/null @@ -1,38 +0,0 @@ -const letters = "abcdefghijklmnopqrstuvwxyz"; -let text = process.argv[2]; -let key = process.argv[2].split(' ')[0]; -let result = text.split(''); -let key_text = []; - -while (key_text.length < text.length) { - key_text.push(key); -} - -key_text = key_text.join("").split(''); -for (const [i, letter] of result.entries()){ - if (letters.includes(letter)) { - continue; - } - key_text.splice(i, 0, letter); -} - -key_text = key_text.slice(0, text.length); - -for (const [i, letter] of key_text.entries()){ - if (!letters.includes(letter)){ - continue; - } - if (!letters.includes(result[i])){ - continue; - } - let a = letters.indexOf(result[i])-letters.indexOf(letter)-1; - while (a >= 26) { - a -= 26; - } - if (a < 0) { - a = 26 + a; - } - result[i] = letters[a]; -} - -console.log(key + " " + result.slice(key.length+1).join("")); \ No newline at end of file diff --git a/src/javascript/algorithm/encode.js b/src/javascript/algorithm/encode.js deleted file mode 100644 index 07032fb..0000000 --- a/src/javascript/algorithm/encode.js +++ /dev/null @@ -1,35 +0,0 @@ -const letters = "abcdefghijklmnopqrstuvwxyz"; -let text = process.argv[2]; -let key = process.argv[2].split(' ')[0]; -let result = text.split(''); -let key_text = []; - -while (key_text.length < result.length) { - key_text.push(key); -} - -key_text = key_text.join("").split(''); -for (const [i, letter] of text.split('').entries()){ - if (letters.includes(letter)) { - continue; - } - key_text.splice(i, 0, letter); -} - -key_text = key_text.slice(0, text.length); - -for (const [i, letter] of key_text.entries()){ - if (!letters.includes(letter)){ - continue; - } - if (!letters.includes(result[i])){ - continue; - } - let a = letters.indexOf(result[i])+letters.indexOf(letter)+1; - while (a >= 26) { - a -= 26; - } - result[i] = letters[a] -} - -console.log(key + " " + result.slice(key.length+1).join("")); \ No newline at end of file diff --git a/src/javascript/library/README.md b/src/javascript/library/README.md deleted file mode 100644 index 9747821..0000000 --- a/src/javascript/library/README.md +++ /dev/null @@ -1,33 +0,0 @@ -# YoCrypt algorithm written in JavaScript -YoCrypt is a new way to encode and decode text symetrically. It works with a key and is a variation of the [Caesar cipher](https://en.wikipedia.org/wiki/Caesar_cipher). If you want to know more about YoCrypt, check out the [GitHub](https://github.com/PetitPotiron/YoCrypt). - -The files located in this directory implement the YoCrypt algorithm with a JavaScript library. - -* [Usage](#usage) -* * [Encoding](#encoding) -* * [Decoding](#decoding) -* * [To go further...](#to-go-further) - -[![Discord server for help](https://discord.com/api/guilds/800032961525317693/embed.png)](https://discord.gg/t2dxrXMKya) - -## Usage -### Encoding -To encode a text using YoCrypt, use the `encode()` function from the library : - -```javascript -node> let yocrypt = require('yocrypt'); -node> yocrypt.encode('hello my name is john doe'); -'hello ud zmbm ne vdps pat' -``` - -### Decoding -To encode a text using YoCrypt, use the `decode()` function from the library : - -```javascript -node> let yocrypt = require('yocrypt'); -node> yocrypt.decode('hello ud zmbm ne vdps pat'); -'hello my name is john doe' -``` - -### To go further... -If you want to go further through the uses of the library, take a look at the [documentation](https://yocrypt.readthedocs.io). You can also check out the [GitHub](https://github.com/PetitPotiron/YoCrypt). \ No newline at end of file diff --git a/src/javascript/library/yocrypt/README.md b/src/javascript/library/yocrypt/README.md deleted file mode 100644 index 9747821..0000000 --- a/src/javascript/library/yocrypt/README.md +++ /dev/null @@ -1,33 +0,0 @@ -# YoCrypt algorithm written in JavaScript -YoCrypt is a new way to encode and decode text symetrically. It works with a key and is a variation of the [Caesar cipher](https://en.wikipedia.org/wiki/Caesar_cipher). If you want to know more about YoCrypt, check out the [GitHub](https://github.com/PetitPotiron/YoCrypt). - -The files located in this directory implement the YoCrypt algorithm with a JavaScript library. - -* [Usage](#usage) -* * [Encoding](#encoding) -* * [Decoding](#decoding) -* * [To go further...](#to-go-further) - -[![Discord server for help](https://discord.com/api/guilds/800032961525317693/embed.png)](https://discord.gg/t2dxrXMKya) - -## Usage -### Encoding -To encode a text using YoCrypt, use the `encode()` function from the library : - -```javascript -node> let yocrypt = require('yocrypt'); -node> yocrypt.encode('hello my name is john doe'); -'hello ud zmbm ne vdps pat' -``` - -### Decoding -To encode a text using YoCrypt, use the `decode()` function from the library : - -```javascript -node> let yocrypt = require('yocrypt'); -node> yocrypt.decode('hello ud zmbm ne vdps pat'); -'hello my name is john doe' -``` - -### To go further... -If you want to go further through the uses of the library, take a look at the [documentation](https://yocrypt.readthedocs.io). You can also check out the [GitHub](https://github.com/PetitPotiron/YoCrypt). \ No newline at end of file diff --git a/src/javascript/library/yocrypt/decode.js b/src/javascript/library/yocrypt/decode.js deleted file mode 100644 index c4638cd..0000000 --- a/src/javascript/library/yocrypt/decode.js +++ /dev/null @@ -1,41 +0,0 @@ -module.exports = function (text, key = null) { - const letters = "abcdefghijklmnopqrstuvwxyz"; - if (key == null) { - key = text.split(' ')[0]; - } - let result = text.split(''); - let key_text = []; - - while (key_text.length < text.length) { - key_text.push(key); - } - - key_text = key_text.join("").split(''); - for (const [i, letter] of result.entries()) { - if (letters.includes(letter)) { - continue; - } - key_text.splice(i, 0, letter); - } - - key_text = key_text.slice(0, text.length); - - for (const [i, letter] of key_text.entries()) { - if (!letters.includes(letter)) { - continue; - } - if (!letters.includes(result[i])) { - continue; - } - let a = letters.indexOf(result[i]) - letters.indexOf(letter) - 1; - while (a >= 26) { - a -= 26; - } - if (a < 0) { - a = 26 + a; - } - result[i] = letters[a]; - } - - return key + " " + result.slice(key.length + 1).join(""); -} \ No newline at end of file diff --git a/src/javascript/library/yocrypt/encode.js b/src/javascript/library/yocrypt/encode.js deleted file mode 100644 index 61f9038..0000000 --- a/src/javascript/library/yocrypt/encode.js +++ /dev/null @@ -1,38 +0,0 @@ -module.exports = function (text, key = null) { - const letters = "abcdefghijklmnopqrstuvwxyz"; - if (key == null) { - key = text.split(' ')[0]; - } - let result = text.split(''); - let key_text = []; - - while (key_text.length < result.length) { - key_text.push(key); - } - - key_text = key_text.join("").split(''); - for (const [i, letter] of text.split('').entries()) { - if (letters.includes(letter)) { - continue; - } - key_text.splice(i, 0, letter); - } - - key_text = key_text.slice(0, text.length); - - for (const [i, letter] of key_text.entries()) { - if (!letters.includes(letter)) { - continue; - } - if (!letters.includes(result[i])) { - continue; - } - let a = letters.indexOf(result[i]) + letters.indexOf(letter) + 1; - while (a >= 26) { - a -= 26; - } - result[i] = letters[a] - } - - return key + " " + result.slice(key.length + 1).join(""); -} \ No newline at end of file diff --git a/src/javascript/library/yocrypt/index.js b/src/javascript/library/yocrypt/index.js deleted file mode 100644 index ab9e11c..0000000 --- a/src/javascript/library/yocrypt/index.js +++ /dev/null @@ -1,2 +0,0 @@ -exports.encode = require("./encode.js"); -exports.decode = require("./decode.js"); \ No newline at end of file diff --git a/src/javascript/library/yocrypt/package.json b/src/javascript/library/yocrypt/package.json deleted file mode 100644 index 4105237..0000000 --- a/src/javascript/library/yocrypt/package.json +++ /dev/null @@ -1,25 +0,0 @@ -{ - "name": "yocrypt", - "version": "1.0.0", - "description": "YoCrypt is a new way to encode and decode text symetrically. It's inspired by the Caesar Cipher, but it's a little bit more complicated.", - "main": "index.js", - "scripts": { - "test": "echo \"Error: no test specified\" && exit 1" - }, - "repository": { - "type": "git", - "url": "git+https://github.com/PetitPotiron/YoCrypt.git" - }, - "keywords": [ - "yocrypt", - "cipher", - "caesar", - "encryption" - ], - "author": "petitpotiron", - "license": "MIT", - "bugs": { - "url": "https://github.com/PetitPotiron/YoCrypt/issues" - }, - "homepage": "https://github.com/PetitPotiron/YoCrypt#readme" -} diff --git a/src/python/algorithm/README.md b/src/python/algorithm/README.md deleted file mode 100644 index 551d322..0000000 --- a/src/python/algorithm/README.md +++ /dev/null @@ -1,31 +0,0 @@ -# YoCrypt algorithm written in Python -YoCrypt is a new way to encode and decode text symetrically. It works with a key and is a variation of the [Caesar cipher](https://en.wikipedia.org/wiki/Caesar_cipher). If you want to know more about YoCrypt, check out the [GitHub](https://github.com/PetitPotiron/YoCrypt). - -The files located in this directory implement the YoCrypt algorithm in Python. Note that their usage only works with `argv` (command-line passed arguments) as described below. - -* [Usage](#usage) -* * [Encoding](#encoding) -* * [Decoding](#decoding) -* [To go further...](#to-go-further) - -[![Discord server for help](https://discord.com/api/guilds/800032961525317693/embed.png)](https://discord.gg/t2dxrXMKya) - -## Usage -### Encoding -To encode a text using YoCrypt, run the `encode.py` file located in this directory, and pass the text to encode via `argv` : - -``` -user@computer:~ $ python3 encode.py "hello my name is john doe" -hello ud zmbm ne vdps pat -``` - -### Decoding -To decode a text using YoCrypt, run the `decode.py` file located in this directory, and pass the text to decode via `argv` : - -``` -user@computer:~ $ python3 decode.py "hello ud zmbm ne vdps pat" -hello my name is john doe -``` - -## To go further... -If you want to go further through the uses of the algorithm, take a look at the **library** ([on GitHub](httos://github.com/PetitPotiron/YoCrypt/src/python/library) and [on PyPI](https://pypi.org/project/yocrypt)) and the [documentation](https://yocrypt.readthedocs.io). You can also check out the [GitHub](https://github.com/PetitPotiron/YoCrypt). \ No newline at end of file diff --git a/src/python/algorithm/decode.py b/src/python/algorithm/decode.py deleted file mode 100644 index cdd4ebb..0000000 --- a/src/python/algorithm/decode.py +++ /dev/null @@ -1,27 +0,0 @@ -import sys, string - -text = sys.argv[1] -key = sys.argv[1].split()[0] -result = list(text) -key_text = [] - -while len(key_text) < len(text): - key_text.append(key) - -key_text = list("".join(key_text)) - -for i, letter in enumerate(text): - if letter in string.ascii_lowercase: continue - key_text.insert(i, letter) - -key_text = key_text[:len(text)] - -for i, letter in enumerate(key_text): - if not letter in string.ascii_lowercase: continue - if not result[i] in string.ascii_lowercase: continue - a = string.ascii_lowercase.index(result[i])-string.ascii_lowercase.index(letter)-1 - while a >= 26: - a -= 26 - result[i] = string.ascii_lowercase[a] - -print(key + " " + "".join(result[len(key)+1:])) diff --git a/src/python/algorithm/encode.py b/src/python/algorithm/encode.py deleted file mode 100644 index 0f9f0f3..0000000 --- a/src/python/algorithm/encode.py +++ /dev/null @@ -1,28 +0,0 @@ -import sys, string - -text = sys.argv[1] -key = sys.argv[1].split()[0] -result = list(text) -key_text = [] - -while len(key_text) < len(text): - key_text.append(key) - -key_text = list("".join(key_text)) - -for i, letter in enumerate(text): - if letter in string.ascii_lowercase: continue - key_text.insert(i, letter) - -key_text = key_text[:len(text)] - -for i, letter in enumerate(key_text): - if not letter in string.ascii_lowercase: continue - if not result[i] in string.ascii_lowercase: continue - a = string.ascii_lowercase.index(result[i])+string.ascii_lowercase.index(letter)+1 - while a >= 26: - a -= 26 - result[i] = string.ascii_lowercase[a] - - -print(key + " " + "".join(result[len(key)+1:])) diff --git a/src/python/library/README.md b/src/python/library/README.md deleted file mode 100644 index d4e2093..0000000 --- a/src/python/library/README.md +++ /dev/null @@ -1,33 +0,0 @@ -# YoCrypt algorithm written in Python -YoCrypt is a new way to encode and decode text symetrically. It works with a key and is a variation of the [Caesar cipher](https://en.wikipedia.org/wiki/Caesar_cipher). If you want to know more about YoCrypt, check out the [GitHub](https://github.com/PetitPotiron/YoCrypt). - -The files located in this directory implement the YoCrypt algorithm with a Python library. - -* [Usage](#usage) -* * [Encoding](#encoding) -* * [Decoding](#decoding) -* [To go further...](#to-go-further) - -[![Discord server for help](https://discord.com/api/guilds/800032961525317693/embed.png)](https://discord.gg/t2dxrXMKya) - -## Usage -### Encoding -To encode a text using YoCrypt, use the `encode()` method from the library : - -```python ->>> import yocrypt ->>> yocrypt.encode('hello my name is john doe') -'hello ud zmbm ne vdps pat' -``` - -### Decoding -To encode a text using YoCrypt, use the `decode()` method from the library : - -```python ->>> import yocrypt ->>> yocrypt.decode('hello ud zmbm ne vdps pat') -'hello my name is john doe' -``` - -## To go further... -If you want to go further through the uses of the library, take a look at the [documentation](https://yocrypt.readthedocs.io). You can also check out the [GitHub](https://github.com/PetitPotiron/YoCrypt). \ No newline at end of file diff --git a/src/python/library/setup.py b/src/python/library/setup.py deleted file mode 100644 index 8ca52e8..0000000 --- a/src/python/library/setup.py +++ /dev/null @@ -1,15 +0,0 @@ -from setuptools import setup - -with open("README.md", "r") as fh: - long_description = fh.read() - -setup(name="yocrypt", - version="1.0.0", - description="YoCrypt is a new way to encode and decode text symetrically.", - long_description=long_description, - long_description_content_type="text/markdown", - author="PetitPotiron", - packages=["yocrypt"], - license="MIT License", - url='https://github.com/PetitPotiron/YoCrypt/blob/main/src/python/library/yocrypt' - ) diff --git a/src/python/library/tests.py b/src/python/library/tests.py deleted file mode 100644 index 6580e67..0000000 --- a/src/python/library/tests.py +++ /dev/null @@ -1,18 +0,0 @@ -import yocrypt - -number_of_tests = 3 - -if yocrypt.decode(yocrypt.encode('hello my name is john doe')) == 'hello my name is john doe': - print(f'Test 1/{number_of_tests} passed') -else: - print(f'Test 1/{number_of_tests} [ERROR]') - -if yocrypt.encode('hello my name is john doe') == 'hello ud zmbm ne vdps pat': - print(f'Test 2/{number_of_tests} passed') -else: - print(f'Test 2/{number_of_tests} [ERROR]') - -if yocrypt.decode('hello ud zmbm ne vdps pat') == 'hello my name is john doe': - print(f'Test 3/{number_of_tests} passed') -else: - print(f'Test 3/{number_of_tests} [ERROR]') \ No newline at end of file diff --git a/src/python/library/yocrypt/README.md b/src/python/library/yocrypt/README.md deleted file mode 100644 index d4e2093..0000000 --- a/src/python/library/yocrypt/README.md +++ /dev/null @@ -1,33 +0,0 @@ -# YoCrypt algorithm written in Python -YoCrypt is a new way to encode and decode text symetrically. It works with a key and is a variation of the [Caesar cipher](https://en.wikipedia.org/wiki/Caesar_cipher). If you want to know more about YoCrypt, check out the [GitHub](https://github.com/PetitPotiron/YoCrypt). - -The files located in this directory implement the YoCrypt algorithm with a Python library. - -* [Usage](#usage) -* * [Encoding](#encoding) -* * [Decoding](#decoding) -* [To go further...](#to-go-further) - -[![Discord server for help](https://discord.com/api/guilds/800032961525317693/embed.png)](https://discord.gg/t2dxrXMKya) - -## Usage -### Encoding -To encode a text using YoCrypt, use the `encode()` method from the library : - -```python ->>> import yocrypt ->>> yocrypt.encode('hello my name is john doe') -'hello ud zmbm ne vdps pat' -``` - -### Decoding -To encode a text using YoCrypt, use the `decode()` method from the library : - -```python ->>> import yocrypt ->>> yocrypt.decode('hello ud zmbm ne vdps pat') -'hello my name is john doe' -``` - -## To go further... -If you want to go further through the uses of the library, take a look at the [documentation](https://yocrypt.readthedocs.io). You can also check out the [GitHub](https://github.com/PetitPotiron/YoCrypt). \ No newline at end of file diff --git a/src/python/library/yocrypt/__init__.py b/src/python/library/yocrypt/__init__.py deleted file mode 100644 index 4f99f96..0000000 --- a/src/python/library/yocrypt/__init__.py +++ /dev/null @@ -1,2 +0,0 @@ -from .encode import encode -from .decode import decode \ No newline at end of file diff --git a/src/python/library/yocrypt/decode.py b/src/python/library/yocrypt/decode.py deleted file mode 100644 index 4370c25..0000000 --- a/src/python/library/yocrypt/decode.py +++ /dev/null @@ -1,38 +0,0 @@ -import string - - -def decode(text, **kwargs): - text = text - key = text.split()[0] - for identifier, value in kwargs.items(): - if identifier == "key": - key = value - text = value + " " + text - - result = list(text) - key_text = [] - - while len(key_text) < len(text): - key_text.append(key) - - key_text = list("".join(key_text)) - - for i, letter in enumerate(text): - if letter in string.ascii_lowercase: - continue - key_text.insert(i, letter) - - key_text = key_text[:len(text)] - - for i, letter in enumerate(key_text): - if not letter in string.ascii_lowercase: - continue - if not result[i] in string.ascii_lowercase: - continue - a = string.ascii_lowercase.index( - result[i])-string.ascii_lowercase.index(letter)-1 - while a >= 26: - a -= 26 - result[i] = string.ascii_lowercase[a] - - return key + " " + "".join(result[len(key)+1:]) diff --git a/src/python/library/yocrypt/encode.py b/src/python/library/yocrypt/encode.py deleted file mode 100644 index 2e7a45c..0000000 --- a/src/python/library/yocrypt/encode.py +++ /dev/null @@ -1,36 +0,0 @@ -import string - - -def encode(text, **kwargs): - key = text.split()[0] - for identifier, value in kwargs.items(): - if identifier == "key": - key = value - text = value + " " + text - result = list(text) - key_text = [] - - while len(key_text) < len(text): - key_text.append(key) - - key_text = list("".join(key_text)) - - for i, letter in enumerate(text): - if letter in string.ascii_lowercase: - continue - key_text.insert(i, letter) - - key_text = key_text[:len(text)] - - for i, letter in enumerate(key_text): - if not letter in string.ascii_lowercase: - continue - if not result[i] in string.ascii_lowercase: - continue - a = string.ascii_lowercase.index( - result[i])+string.ascii_lowercase.index(letter)+1 - while a >= 26: - a -= 26 - result[i] = string.ascii_lowercase[a] - - return key + " " + "".join(result[len(key)+1:]) diff --git a/src/rust/algorithm/README.md b/src/rust/algorithm/README.md deleted file mode 100644 index fdf702f..0000000 --- a/src/rust/algorithm/README.md +++ /dev/null @@ -1 +0,0 @@ -Coming soon... \ No newline at end of file diff --git a/src/rust/library/README.md b/src/rust/library/README.md deleted file mode 100644 index fdf702f..0000000 --- a/src/rust/library/README.md +++ /dev/null @@ -1 +0,0 @@ -Coming soon... \ No newline at end of file