2021-08-06 17:28:10 -04:00
|
|
|
# Copyright 2018-2021 the Deno authors. All rights reserved. MIT license.
|
|
|
|
|
|
|
|
[package]
|
|
|
|
name = "deno_ffi"
|
2021-12-22 16:20:17 -05:00
|
|
|
version = "0.17.0"
|
2021-08-06 17:28:10 -04:00
|
|
|
authors = ["the Deno authors"]
|
2021-11-02 10:03:37 -04:00
|
|
|
edition = "2021"
|
2021-08-06 17:28:10 -04:00
|
|
|
license = "MIT"
|
|
|
|
readme = "README.md"
|
|
|
|
repository = "https://github.com/denoland/deno"
|
|
|
|
description = "Dynamic library ffi for deno"
|
|
|
|
|
|
|
|
[lib]
|
|
|
|
path = "lib.rs"
|
|
|
|
|
|
|
|
[dependencies]
|
2021-12-22 16:20:17 -05:00
|
|
|
deno_core = { version = "0.112.0", path = "../../core" }
|
2021-08-06 17:28:10 -04:00
|
|
|
dlopen = "0.1.8"
|
2021-10-26 16:30:27 -04:00
|
|
|
libffi = "2.0.0"
|
2021-09-02 17:38:44 -04:00
|
|
|
serde = { version = "1.0.129", features = ["derive"] }
|
2021-10-05 08:50:00 -04:00
|
|
|
tokio = { version = "1.10.1", features = ["full"] }
|
2021-10-05 20:13:56 -04:00
|
|
|
|
|
|
|
[target.'cfg(windows)'.dependencies]
|
|
|
|
winapi = { version = "0.3.9", features = ["errhandlingapi", "minwindef", "ntdef", "winbase", "winnt"] }
|