diff options
-rw-r--r-- | LICENSE | 20 | ||||
-rw-r--r-- | fondant/Cargo.toml | 6 | ||||
l--------- | fondant/LICENSE | 1 | ||||
l--------- | fondant/readme.md | 1 | ||||
-rw-r--r-- | fondant_deps/Cargo.toml | 6 | ||||
l--------- | fondant_deps/LICENSE | 1 | ||||
l--------- | fondant_deps/readme.md | 1 | ||||
-rw-r--r-- | fondant_derive/Cargo.toml | 6 | ||||
l--------- | fondant_derive/LICENSE | 1 | ||||
l--------- | fondant_derive/readme.md | 1 |
10 files changed, 44 insertions, 0 deletions
@@ -0,0 +1,20 @@ | |||
1 | Copyright 2018 Akshay Oppiliappan ([email protected]) | ||
2 | |||
3 | Permission is hereby granted, free of charge, to any person obtaining a copy of | ||
4 | this software and associated documentation files (the "Software"), to deal in | ||
5 | the Software without restriction, including without limitation the rights to | ||
6 | use, copy, modify, merge, publish, distribute, sublicense, and/or sell copies | ||
7 | of the Software, and to permit persons to whom the Software is furnished to do | ||
8 | so, subject to the following conditions: | ||
9 | |||
10 | The above copyright notice and this permission notice shall be included in all | ||
11 | copies or substantial portions of the Software. | ||
12 | |||
13 | THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR | ||
14 | IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, | ||
15 | FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE | ||
16 | AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER | ||
17 | LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, | ||
18 | OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE | ||
19 | SOFTWARE. | ||
20 | |||
diff --git a/fondant/Cargo.toml b/fondant/Cargo.toml index d6886b1..53055e2 100644 --- a/fondant/Cargo.toml +++ b/fondant/Cargo.toml | |||
@@ -2,6 +2,12 @@ | |||
2 | name = "fondant" | 2 | name = "fondant" |
3 | version = "0.1.0" | 3 | version = "0.1.0" |
4 | authors = ["Akshay <[email protected]>"] | 4 | authors = ["Akshay <[email protected]>"] |
5 | description = "Macro based library to take the boilerplate out of configuration handling" | ||
6 | readme = "readme.md" | ||
7 | repository = "https://github.com/nerdypepper/fondant" | ||
8 | license = "MIT" | ||
9 | keywords = ["cli", "configuration", "macro"] | ||
10 | categories = ["command-line-utilities", "config"] | ||
5 | edition = "2018" | 11 | edition = "2018" |
6 | 12 | ||
7 | [dependencies] | 13 | [dependencies] |
diff --git a/fondant/LICENSE b/fondant/LICENSE new file mode 120000 index 0000000..ea5b606 --- /dev/null +++ b/fondant/LICENSE | |||
@@ -0,0 +1 @@ | |||
../LICENSE \ No newline at end of file | |||
diff --git a/fondant/readme.md b/fondant/readme.md new file mode 120000 index 0000000..309d33e --- /dev/null +++ b/fondant/readme.md | |||
@@ -0,0 +1 @@ | |||
/home/np/code/rustuff/fondant_workspace/readme.md \ No newline at end of file | |||
diff --git a/fondant_deps/Cargo.toml b/fondant_deps/Cargo.toml index 2d1a2db..3e40afd 100644 --- a/fondant_deps/Cargo.toml +++ b/fondant_deps/Cargo.toml | |||
@@ -2,6 +2,12 @@ | |||
2 | name = "fondant_deps" | 2 | name = "fondant_deps" |
3 | version = "0.1.0" | 3 | version = "0.1.0" |
4 | authors = ["Akshay <[email protected]>"] | 4 | authors = ["Akshay <[email protected]>"] |
5 | description = "External dependencies to supplement fondant" | ||
6 | readme = "readme.md" | ||
7 | repository = "https://github.com/nerdypepper/fondant" | ||
8 | license = "MIT" | ||
9 | keywords = ["cli", "configuration", "macro"] | ||
10 | categories = ["command-line-utilities", "config"] | ||
5 | edition = "2018" | 11 | edition = "2018" |
6 | 12 | ||
7 | [dependencies] | 13 | [dependencies] |
diff --git a/fondant_deps/LICENSE b/fondant_deps/LICENSE new file mode 120000 index 0000000..ea5b606 --- /dev/null +++ b/fondant_deps/LICENSE | |||
@@ -0,0 +1 @@ | |||
../LICENSE \ No newline at end of file | |||
diff --git a/fondant_deps/readme.md b/fondant_deps/readme.md new file mode 120000 index 0000000..15926e3 --- /dev/null +++ b/fondant_deps/readme.md | |||
@@ -0,0 +1 @@ | |||
../readme.md \ No newline at end of file | |||
diff --git a/fondant_derive/Cargo.toml b/fondant_derive/Cargo.toml index 73a3a19..3ec27c2 100644 --- a/fondant_derive/Cargo.toml +++ b/fondant_derive/Cargo.toml | |||
@@ -2,6 +2,12 @@ | |||
2 | name = "fondant_derive" | 2 | name = "fondant_derive" |
3 | version = "0.1.0" | 3 | version = "0.1.0" |
4 | authors = ["Akshay <[email protected]>"] | 4 | authors = ["Akshay <[email protected]>"] |
5 | description = "Core macros of fondant" | ||
6 | readme = "readme.md" | ||
7 | repository = "https://github.com/nerdypepper/fondant" | ||
8 | license = "MIT" | ||
9 | keywords = ["cli", "configuration", "macro"] | ||
10 | categories = ["command-line-utilities", "config"] | ||
5 | edition = "2018" | 11 | edition = "2018" |
6 | 12 | ||
7 | [dependencies] | 13 | [dependencies] |
diff --git a/fondant_derive/LICENSE b/fondant_derive/LICENSE new file mode 120000 index 0000000..ea5b606 --- /dev/null +++ b/fondant_derive/LICENSE | |||
@@ -0,0 +1 @@ | |||
../LICENSE \ No newline at end of file | |||
diff --git a/fondant_derive/readme.md b/fondant_derive/readme.md new file mode 120000 index 0000000..15926e3 --- /dev/null +++ b/fondant_derive/readme.md | |||
@@ -0,0 +1 @@ | |||
../readme.md \ No newline at end of file | |||