aboutsummaryrefslogtreecommitdiff
path: root/lux-lua/project.lux
diff options
context:
space:
mode:
authorEduardo Julian2022-03-11 05:52:21 -0400
committerEduardo Julian2022-03-11 05:52:21 -0400
commit6766be5427b1788a44e07151e3fabe33ec4f8b37 (patch)
tree8d8aa5c1d8fd4a9f733f82c48080284ecd4ec31a /lux-lua/project.lux
parentac2c19d93407b00c89513f0f81e9cbbd1425bd9a (diff)
Added an easy way to export Lux functionality to host programs (everywhere else).
Diffstat (limited to 'lux-lua/project.lux')
-rw-r--r--lux-lua/project.lux46
1 files changed, 28 insertions, 18 deletions
diff --git a/lux-lua/project.lux b/lux-lua/project.lux
index 54739d3e2..f1b9c0c46 100644
--- a/lux-lua/project.lux
+++ b/lux-lua/project.lux
@@ -1,23 +1,33 @@
-{""
- [#identity ["com.github.luxlang" "lux-lua" "0.6.4"]
+[""
+ ["identity" ["com.github.luxlang" "lux-lua" "0.6.6-SNAPSHOT"]
+ "description" "A Lua compiler for Lux."
+ "info" ["url" "https://github.com/LuxLang/lux"
+ "scm" "https://github.com/LuxLang/lux.git"
+ "licenses" [["name" "Lux License v0.1.2"
+ "url" "https://github.com/LuxLang/lux/blob/master/license.txt"
+ "type" "repo"]]
+ "developers" [["name" "Eduardo Julian"
+ "url" "https://github.com/eduardoejp"]]]
- #deploy_repositories {"snapshots" "https://oss.sonatype.org/content/repositories/snapshots/"
- "releases" "https://oss.sonatype.org/service/local/staging/deploy/maven2/"}
+ "deploy_repositories" ["snapshots" "https://oss.sonatype.org/content/repositories/snapshots/"
+ "releases" "https://oss.sonatype.org/service/local/staging/deploy/maven2/"]
- #repositories ["https://oss.sonatype.org/content/repositories/snapshots/"
- "https://oss.sonatype.org/service/local/staging/deploy/maven2/"]
+ "repositories" ["https://oss.sonatype.org/content/repositories/snapshots/"
+ "https://oss.sonatype.org/service/local/staging/deploy/maven2/"]
- #compiler ["com.github.luxlang" "lux-jvm" "0.6.4" "jar"]
- #dependencies [... ["com.github.luxlang" "stdlib" "0.6.4" "tar"]
+ "lux" ["com.github.luxlang" "lux-jvm" "0.6.6-SNAPSHOT" "jar"]
+ "dependencies" [... ["com.github.luxlang" "stdlib" "0.6.5" "tar"]
+ ... ["com.github.luxlang" "lux-jvm-function" "0.6.5" "jar"]
- ["org.ow2.asm" "asm" "5.0.4" "jar"]
- ["org.ow2.asm" "asm-commons" "5.0.4" "jar"]
- ["org.ow2.asm" "asm-analysis" "5.0.4" "jar"]
- ["org.ow2.asm" "asm-tree" "5.0.4" "jar"]
- ["org.ow2.asm" "asm-util" "5.0.4" "jar"]
-
- ["com.github.luxlang" "rembulan-runtime" "0.1" "jar"]
- ["com.github.luxlang" "rembulan-stdlib" "0.1" "jar"]
- ["com.github.luxlang" "rembulan-compiler" "0.1" "jar"]]
+ ["org.ow2.asm" "asm" "5.0.4" "jar"]
+ ["org.ow2.asm" "asm-commons" "5.0.4" "jar"]
+ ["org.ow2.asm" "asm-analysis" "5.0.4" "jar"]
+ ["org.ow2.asm" "asm-tree" "5.0.4" "jar"]
+ ["org.ow2.asm" "asm-util" "5.0.4" "jar"]
+
+ ["com.github.luxlang" "rembulan-runtime" "0.1" "jar"]
+ ["com.github.luxlang" "rembulan-stdlib" "0.1" "jar"]
+ ["com.github.luxlang" "rembulan-compiler" "0.1" "jar"]]
- #program "program"]}
+ "program" "program"
+ "configuration" ["lua_compiler?" ""]]]