aboutsummaryrefslogtreecommitdiff
path: root/lux-lua/project.clj
diff options
context:
space:
mode:
authorEduardo Julian2021-10-22 23:57:14 -0400
committerEduardo Julian2021-10-22 23:57:14 -0400
commit6772d0be7d36bf8a7ed4f9f5ba8e872134b809c5 (patch)
tree514764c4d3071172928227ebe07149f5eab534e8 /lux-lua/project.clj
parentaf680e8470bf7446d9fac431f38dcc57bd60aba9 (diff)
v0.6.3
Diffstat (limited to 'lux-lua/project.clj')
-rw-r--r--lux-lua/project.clj22
1 files changed, 16 insertions, 6 deletions
diff --git a/lux-lua/project.clj b/lux-lua/project.clj
index edaa26154..1cad2252b 100644
--- a/lux-lua/project.clj
+++ b/lux-lua/project.clj
@@ -1,9 +1,12 @@
-(def version "0.6.2")
+(def version "0.6.3")
(def repo "https://github.com/LuxLang/lux")
(def sonatype-releases "https://oss.sonatype.org/service/local/staging/deploy/maven2/")
(def sonatype-snapshots "https://oss.sonatype.org/content/repositories/snapshots/")
-(defproject com.github.luxlang/lux-lua "0.6.3-SNAPSHOT" ;; #=(identity version)
+(def asm_version "5.0.4")
+(def rembulan_version "0.1")
+
+(defproject com.github.luxlang/lux-lua #=(identity version)
:description "A Lua compiler for Lux."
:url ~repo
:license {:name "Lux License v0.1.2"
@@ -20,10 +23,17 @@
:plugins [[com.github.luxlang/lein-luxc ~version]]
:dependencies [[com.github.luxlang/lux-bootstrapper ~version]
- [com.github.luxlang/stdlib ~version]
- [com.github.luxlang/rembulan-runtime "0.1"]
- [com.github.luxlang/rembulan-stdlib "0.1"]
- [com.github.luxlang/rembulan-compiler "0.1"]]
+ ;; [com.github.luxlang/stdlib ~version]
+
+ [org.ow2.asm/asm ~asm_version]
+ [org.ow2.asm/asm-commons ~asm_version]
+ [org.ow2.asm/asm-analysis ~asm_version]
+ [org.ow2.asm/asm-tree ~asm_version]
+ [org.ow2.asm/asm-util ~asm_version]
+
+ [com.github.luxlang/rembulan-runtime ~rembulan_version]
+ [com.github.luxlang/rembulan-stdlib ~rembulan_version]
+ [com.github.luxlang/rembulan-compiler ~rembulan_version]]
:manifest {"lux" ~version}
:source-paths ["source"]