Skip to content

Commit b5a74f4

Browse files
chore: This project is open-source!
1 parent f73cff6 commit b5a74f4

File tree

18 files changed

+29
-0
lines changed

18 files changed

+29
-0
lines changed

LICENSE.md

+11
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,11 @@
1+
# LICENSE <!-- This file does not contain machine-readable metadata license information, sorry! -->
2+
I'm lazy, the target is specified with glob.
3+
## Source code
4+
* `package/**/*.rs` \
5+
Their usage is subject to per-crate license. See each `Cargo.toml` for their license.
6+
* `compile/**/*.origlang` \
7+
Their usage is subject to [CC0 1.0 Universal](https://creativecommons.org/publicdomain/zero/1.0/deed.en).
8+
## Documentation
9+
10+
* `docs/**/*.md` \
11+
Their usage is subject to [Creative Commons Attribution 4.0 International](https://creativecommons.org/licenses/by/4.0/deed.en).

docs/syntax.md

+1
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,4 @@
1+
<!-- SPDX-License-Identifier: CC-BY-4.0 -->
12
# 文法
23

34
この言語の文法は至って単純です。

package/origlang-ast/Cargo.toml

+1
Original file line numberDiff line numberDiff line change
@@ -2,6 +2,7 @@
22
name = "origlang-ast"
33
version = "0.1.0"
44
edition = "2021"
5+
license = "Apache-2.0"
56

67
# See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html
78

package/origlang-cli/Cargo.toml

+1
Original file line numberDiff line numberDiff line change
@@ -2,6 +2,7 @@
22
name = "origlang-cli"
33
version = "0.1.0"
44
edition = "2021"
5+
license = "MPL-2.0"
56

67
# See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html
78

package/origlang-compiler-entrypoint/Cargo.toml

+1
Original file line numberDiff line numberDiff line change
@@ -2,6 +2,7 @@
22
name = "origlang-compiler-entrypoint"
33
version = "0.1.0"
44
edition = "2021"
5+
license = "MPL-2.0"
56

67
# See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html
78

package/origlang-compiler-scanner-example/Cargo.toml

+1
Original file line numberDiff line numberDiff line change
@@ -2,6 +2,7 @@
22
name = "origlang-compiler-scanner-example"
33
version = "0.1.0"
44
edition = "2021"
5+
license = "Apache-2.0"
56

67
# See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html
78

package/origlang-compiler/Cargo.toml

+1
Original file line numberDiff line numberDiff line change
@@ -2,6 +2,7 @@
22
name = "origlang-compiler"
33
version = "0.1.0"
44
edition = "2021"
5+
license = "MPL-2.0"
56

67
# See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html
78

package/origlang-diagnostics/Cargo.toml

+1
Original file line numberDiff line numberDiff line change
@@ -2,6 +2,7 @@
22
name = "origlang-diagnostics"
33
version = "0.1.0"
44
edition = "2021"
5+
license = "CC0-1.0"
56

67
# See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html
78

package/origlang-interop-frontend-webserver/Cargo.toml

+1
Original file line numberDiff line numberDiff line change
@@ -2,6 +2,7 @@
22
name = "origlang-interop-frontend-webserver"
33
version = "0.1.0"
44
edition = "2021"
5+
license = "Apache-2.0"
56

67
# See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html
78

package/origlang-interop-frontend-webserver/www/index.html

+2
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,5 @@
1+
<!-- SPDX-License-Identifier: Apache-2.0 -->
2+
<!-- SPDX-Copyright-Header: -->
13
<!DOCTYPE html>
24
<html lang="ja">
35
<head>

package/origlang-interop/Cargo.toml

+1
Original file line numberDiff line numberDiff line change
@@ -2,6 +2,7 @@
22
name = "origlang-interop"
33
version = "0.1.0"
44
edition = "2021"
5+
license = "MIT"
56

67
# See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html
78

package/origlang-ir-optimizer/Cargo.toml

+1
Original file line numberDiff line numberDiff line change
@@ -2,6 +2,7 @@
22
name = "origlang-ir-optimizer"
33
version = "0.1.0"
44
edition = "2021"
5+
license = "MPL-2.0"
56

67
# See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html
78

package/origlang-ir/Cargo.toml

+1
Original file line numberDiff line numberDiff line change
@@ -2,6 +2,7 @@
22
name = "origlang-ir"
33
version = "0.1.0"
44
edition = "2021"
5+
license = "CC0-1.0"
56

67
# See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html
78

package/origlang-platform/Cargo.toml

+1
Original file line numberDiff line numberDiff line change
@@ -2,6 +2,7 @@
22
name = "origlang-platform"
33
version = "0.1.0"
44
edition = "2021"
5+
license = "CC0-1.0"
56

67
# See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html
78

package/origlang-runtime/Cargo.toml

+1
Original file line numberDiff line numberDiff line change
@@ -2,6 +2,7 @@
22
name = "origlang-runtime"
33
version = "0.1.0"
44
edition = "2021"
5+
license = "MPL-2.0"
56

67
# See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html
78

package/origlang-source-span/Cargo.toml

+1
Original file line numberDiff line numberDiff line change
@@ -2,6 +2,7 @@
22
name = "origlang-source-span"
33
version = "0.1.0"
44
edition = "2021"
5+
license = "CC0-1.0"
56

67
# See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html
78

package/origlang-testsuite/Cargo.toml

+1
Original file line numberDiff line numberDiff line change
@@ -2,6 +2,7 @@
22
name = "origlang-testsuite"
33
version = "0.1.0"
44
edition = "2021"
5+
license = "MPL-2.0"
56

67
# See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html
78

package/origlang-typesystem-model/Cargo.toml

+1
Original file line numberDiff line numberDiff line change
@@ -2,6 +2,7 @@
22
name = "origlang-typesystem-model"
33
version = "0.1.0"
44
edition = "2021"
5+
license = "MPL-2.0"
56

67
# See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html
78

0 commit comments

Comments
 (0)