Merge pull request #283 from mipt-npm/commandertvis/better-parse
Update dependencies
This commit is contained in:
commit
477f75270c
@ -27,6 +27,7 @@ kotlin.js {
|
|||||||
kotlin.sourceSets {
|
kotlin.sourceSets {
|
||||||
commonMain {
|
commonMain {
|
||||||
dependencies {
|
dependencies {
|
||||||
|
api("com.github.h0tk3y.betterParse:better-parse:0.4.2")
|
||||||
api(project(":kmath-core"))
|
api(project(":kmath-core"))
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
@ -39,13 +40,12 @@ kotlin.sourceSets {
|
|||||||
|
|
||||||
jsMain {
|
jsMain {
|
||||||
dependencies {
|
dependencies {
|
||||||
implementation(npm("astring", "1.7.0"))
|
implementation(npm("astring", "1.7.4"))
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
jvmMain {
|
jvmMain {
|
||||||
dependencies {
|
dependencies {
|
||||||
api("com.github.h0tk3y.betterParse:better-parse:0.4.1")
|
|
||||||
implementation("org.ow2.asm:asm:9.1")
|
implementation("org.ow2.asm:asm:9.1")
|
||||||
implementation("org.ow2.asm:asm-commons:9.1")
|
implementation("org.ow2.asm:asm-commons:9.1")
|
||||||
}
|
}
|
||||||
@ -64,25 +64,7 @@ readme {
|
|||||||
feature(
|
feature(
|
||||||
id = "expression-language",
|
id = "expression-language",
|
||||||
description = "Expression language and its parser",
|
description = "Expression language and its parser",
|
||||||
ref = "src/jvmMain/kotlin/space/kscience/kmath/ast/parser.kt"
|
ref = "src/commonMain/kotlin/space/kscience/kmath/ast/parser.kt"
|
||||||
)
|
|
||||||
|
|
||||||
feature(
|
|
||||||
id = "mst",
|
|
||||||
description = "MST (Mathematical Syntax Tree) as expression language's syntax intermediate representation",
|
|
||||||
ref = "src/commonMain/kotlin/space/kscience/kmath/ast/MST.kt"
|
|
||||||
)
|
|
||||||
|
|
||||||
feature(
|
|
||||||
id = "mst-building",
|
|
||||||
description = "MST building algebraic structure",
|
|
||||||
ref = "src/commonMain/kotlin/space/kscience/kmath/ast/MstAlgebra.kt"
|
|
||||||
)
|
|
||||||
|
|
||||||
feature(
|
|
||||||
id = "mst-interpreter",
|
|
||||||
description = "MST interpreter",
|
|
||||||
ref = "src/commonMain/kotlin/space/kscience/kmath/ast/MST.kt"
|
|
||||||
)
|
)
|
||||||
|
|
||||||
feature(
|
feature(
|
||||||
@ -96,4 +78,10 @@ readme {
|
|||||||
description = "Dynamic MST to JS compiler",
|
description = "Dynamic MST to JS compiler",
|
||||||
ref = "src/jsMain/kotlin/space/kscience/kmath/estree/estree.kt"
|
ref = "src/jsMain/kotlin/space/kscience/kmath/estree/estree.kt"
|
||||||
)
|
)
|
||||||
|
|
||||||
|
feature(
|
||||||
|
id = "rendering",
|
||||||
|
description = "Extendable MST rendering",
|
||||||
|
ref = "src/commonMain/kotlin/space/kscience/kmath/ast/rendering/MathRenderer.kt"
|
||||||
|
)
|
||||||
}
|
}
|
||||||
|
@ -3,8 +3,6 @@
|
|||||||
* Use of this source code is governed by the Apache 2.0 license that can be found in the license/LICENSE.txt file.
|
* Use of this source code is governed by the Apache 2.0 license that can be found in the license/LICENSE.txt file.
|
||||||
*/
|
*/
|
||||||
|
|
||||||
// TODO move to common when https://github.com/h0tk3y/better-parse/pull/37 is merged
|
|
||||||
|
|
||||||
package space.kscience.kmath.ast
|
package space.kscience.kmath.ast
|
||||||
|
|
||||||
import com.github.h0tk3y.betterParse.combinators.*
|
import com.github.h0tk3y.betterParse.combinators.*
|
Loading…
Reference in New Issue
Block a user