diff options
author | Nadrieril | 2019-04-12 18:06:45 +0200 |
---|---|---|
committer | Nadrieril | 2019-04-12 18:06:45 +0200 |
commit | 16dd859d2460b90bdf454c4cbee2668cd4398e07 (patch) | |
tree | b6fa63dc4fb691fce56ceccea3b7a3250b8719f8 | |
parent | fd4bb0e573296ec91b86ad223738de8f16cd4d60 (diff) |
Clarify license
Closes #61
-rw-r--r-- | README.md | 4 | ||||
-rw-r--r-- | abnf_to_pest/Cargo.toml | 1 | ||||
-rw-r--r-- | dhall/Cargo.toml | 1 | ||||
-rw-r--r-- | dhall_core/Cargo.toml | 1 | ||||
-rw-r--r-- | dhall_generator/Cargo.toml | 1 | ||||
-rw-r--r-- | dhall_parser/Cargo.toml | 1 | ||||
-rw-r--r-- | iter_patterns/Cargo.toml | 1 |
7 files changed, 10 insertions, 0 deletions
@@ -18,3 +18,7 @@ This is still quite unstable so use at your own risk. Documentation is severely You can see what's missing from the commented out tests in `dhall/src/normalize.rs` and `dhall/src/typecheck.rs`. +## License + +Licensed under the terms of the 2-Clause BSD License ([LICENSE](LICENSE) or +https://opensource.org/licenses/BSD-2-Clause) diff --git a/abnf_to_pest/Cargo.toml b/abnf_to_pest/Cargo.toml index 2216b1c..ff4dc01 100644 --- a/abnf_to_pest/Cargo.toml +++ b/abnf_to_pest/Cargo.toml @@ -2,6 +2,7 @@ name = "abnf_to_pest" version = "0.1.0" authors = ["Nadrieril <nadrieril@users.noreply.github.com>"] +license = "BSD-2-Clause" edition = "2018" [lib] diff --git a/dhall/Cargo.toml b/dhall/Cargo.toml index 0c9b97a..c22492f 100644 --- a/dhall/Cargo.toml +++ b/dhall/Cargo.toml @@ -2,6 +2,7 @@ name = "dhall" version = "0.1.0" authors = ["NanoTech <nanotech@nanotechcorp.net>", "Nadrieril <nadrieril@users.noreply.github.com>"] +license = "BSD-2-Clause" edition = "2018" build = "build.rs" diff --git a/dhall_core/Cargo.toml b/dhall_core/Cargo.toml index c3c417a..5f84d35 100644 --- a/dhall_core/Cargo.toml +++ b/dhall_core/Cargo.toml @@ -2,6 +2,7 @@ name = "dhall_core" version = "0.1.0" authors = ["NanoTech <nanotech@nanotechcorp.net>", "Nadrieril <nadrieril@users.noreply.github.com>"] +license = "BSD-2-Clause" edition = "2018" [lib] diff --git a/dhall_generator/Cargo.toml b/dhall_generator/Cargo.toml index 2a6ca67..d58e2eb 100644 --- a/dhall_generator/Cargo.toml +++ b/dhall_generator/Cargo.toml @@ -2,6 +2,7 @@ name = "dhall_generator" version = "0.1.0" authors = ["Nadrieril <nadrieril@users.noreply.github.com>"] +license = "BSD-2-Clause" edition = "2018" [lib] diff --git a/dhall_parser/Cargo.toml b/dhall_parser/Cargo.toml index 758c273..5ee7eca 100644 --- a/dhall_parser/Cargo.toml +++ b/dhall_parser/Cargo.toml @@ -2,6 +2,7 @@ name = "dhall_parser" version = "0.1.0" authors = ["Nadrieril <nadrieril@users.noreply.github.com>"] +license = "BSD-2-Clause" edition = "2018" build = "build.rs" diff --git a/iter_patterns/Cargo.toml b/iter_patterns/Cargo.toml index d63669d..5a4c45f 100644 --- a/iter_patterns/Cargo.toml +++ b/iter_patterns/Cargo.toml @@ -2,6 +2,7 @@ name = "iter_patterns" version = "0.1.0" authors = ["Nadrieril <nadrieril@users.noreply.github.com>"] +license = "BSD-2-Clause" edition = "2018" [lib] |