diff --git a/lorgn_lang/Cargo.toml b/lorgn_lang/Cargo.toml index 1a3a69d..eb18fae 100644 --- a/lorgn_lang/Cargo.toml +++ b/lorgn_lang/Cargo.toml @@ -1,9 +1,10 @@ [package] name = "lorgn_lang" +description = "a general purpose scripting language optimized for graphical programming." version = "0.1.0" edition = "2021" - -# See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html +license = "MIT" +repository = "https://github.com/MajorBarnulf/lorgn" [dependencies] serde = { version = "1.0", features = ["derive"]} \ No newline at end of file diff --git a/lorgn_runtime/Cargo.toml b/lorgn_runtime/Cargo.toml index 1fe6ece..aff436e 100644 --- a/lorgn_runtime/Cargo.toml +++ b/lorgn_runtime/Cargo.toml @@ -1,9 +1,10 @@ [package] name = "lorgn_runtime" +description = "runtime for the LORGN language" version = "0.1.0" edition = "2021" - -# See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html +license = "MIT" +repository = "https://github.com/MajorBarnulf/lorgn" [dependencies] lorgn_lang = { path = "../lorgn_lang" }