mirror of
https://github.com/lune-org/lune.git
synced 2025-04-04 10:30:54 +01:00
24 lines
479 B
TOML
24 lines
479 B
TOML
[package]
|
|
name = "lune-std-ffi"
|
|
version = "0.1.1"
|
|
edition = "2021"
|
|
license = "MPL-2.0"
|
|
repository = "https://github.com/lune-org/lune"
|
|
description = "Lune standard library - FFI"
|
|
|
|
[lib]
|
|
path = "src/lib.rs"
|
|
|
|
[lints]
|
|
workspace = true
|
|
|
|
[dependencies]
|
|
mlua = { version = "0.9.9", features = ["luau"] }
|
|
mlua-sys = { version = "0.6.2", features = ["luau"] }
|
|
num = "0.4.3"
|
|
dlopen2 = "0.7.0"
|
|
libc = "0.2.162"
|
|
|
|
libffi = "3.2.0"
|
|
|
|
lune-utils = { version = "0.1.3", path = "../lune-utils" }
|