2022-01-07 22:09:52 -05:00
|
|
|
# Copyright 2018-2022 the Deno authors. All rights reserved. MIT license.
|
2021-08-06 17:28:10 -04:00
|
|
|
|
|
|
|
[package]
|
|
|
|
name = "deno_ffi"
|
2022-12-01 08:46:27 -05:00
|
|
|
version = "0.67.0"
|
2022-11-22 15:07:35 -05:00
|
|
|
authors.workspace = true
|
|
|
|
edition.workspace = true
|
|
|
|
license.workspace = true
|
2021-08-06 17:28:10 -04:00
|
|
|
readme = "README.md"
|
2022-11-22 15:07:35 -05:00
|
|
|
repository.workspace = true
|
2021-08-06 17:28:10 -04:00
|
|
|
description = "Dynamic library ffi for deno"
|
|
|
|
|
|
|
|
[lib]
|
|
|
|
path = "lib.rs"
|
|
|
|
|
|
|
|
[dependencies]
|
2022-11-22 15:07:35 -05:00
|
|
|
deno_core.workspace = true
|
|
|
|
dlopen.workspace = true
|
2022-09-07 02:53:56 -04:00
|
|
|
dynasmrt = "1.2.3"
|
2022-05-05 06:41:59 -04:00
|
|
|
libffi = "3.0.0"
|
2022-11-22 15:07:35 -05:00
|
|
|
serde.workspace = true
|
|
|
|
tokio.workspace = true
|
2021-10-05 20:13:56 -04:00
|
|
|
|
|
|
|
[target.'cfg(windows)'.dependencies]
|
2022-11-22 15:07:35 -05:00
|
|
|
winapi = { workspace = true, features = ["errhandlingapi", "minwindef", "ntdef", "winbase", "winnt"] }
|