2021-08-06 17:28:10 -04:00
|
|
|
# Copyright 2018-2021 the Deno authors. All rights reserved. MIT license.
|
|
|
|
|
|
|
|
[package]
|
|
|
|
name = "deno_ffi"
|
2021-09-14 15:38:35 -04:00
|
|
|
version = "0.4.0"
|
2021-08-06 17:28:10 -04:00
|
|
|
authors = ["the Deno authors"]
|
|
|
|
edition = "2018"
|
|
|
|
license = "MIT"
|
|
|
|
readme = "README.md"
|
|
|
|
repository = "https://github.com/denoland/deno"
|
|
|
|
description = "Dynamic library ffi for deno"
|
|
|
|
|
|
|
|
[lib]
|
|
|
|
path = "lib.rs"
|
|
|
|
|
|
|
|
[dependencies]
|
2021-09-14 15:38:35 -04:00
|
|
|
deno_core = { version = "0.99.0", path = "../../core" }
|
2021-08-06 17:28:10 -04:00
|
|
|
dlopen = "0.1.8"
|
2021-08-09 08:15:37 -04:00
|
|
|
libffi = { version = "=0.0.7", package = "deno-libffi" }
|
2021-09-02 17:38:44 -04:00
|
|
|
serde = { version = "1.0.129", features = ["derive"] }
|