2022-07-25 17:24:21 +03:00
|
|
|
[package]
|
|
|
|
name = "enso-parser-jni"
|
|
|
|
version = "0.1.0"
|
|
|
|
authors = ["Enso Team <enso-dev@enso.org>"]
|
|
|
|
edition = "2021"
|
|
|
|
description = "Enso Parser JNI dynamic library."
|
|
|
|
readme = "README.md"
|
|
|
|
homepage = "https://github.com/enso-org/enso"
|
|
|
|
repository = "https://github.com/enso-org/enso"
|
|
|
|
license-file = "../../LICENSE"
|
|
|
|
|
|
|
|
[dependencies]
|
|
|
|
enso-prelude = { path = "../../prelude" }
|
|
|
|
enso-parser = { path = "../" }
|
2024-07-24 20:54:23 +03:00
|
|
|
jni = "0.21.0"
|
2022-07-25 17:24:21 +03:00
|
|
|
|
|
|
|
[lib]
|
|
|
|
name = "enso_parser"
|
|
|
|
crate-type = ["cdylib"]
|
2024-03-25 02:45:55 +03:00
|
|
|
|
|
|
|
[lints]
|
|
|
|
workspace = true
|