2023-01-02 16:00:42 -05:00
|
|
|
# Copyright 2018-2023 the Deno authors. All rights reserved. MIT license.
|
2021-08-06 23:28:10 +02:00
|
|
|
|
|
|
|
[package]
|
|
|
|
name = "deno_ffi"
|
2023-05-25 01:38:01 +02:00
|
|
|
version = "0.93.0"
|
2022-11-22 21:07:35 +01:00
|
|
|
authors.workspace = true
|
|
|
|
edition.workspace = true
|
|
|
|
license.workspace = true
|
2021-08-06 23:28:10 +02:00
|
|
|
readme = "README.md"
|
2022-11-22 21:07:35 +01:00
|
|
|
repository.workspace = true
|
2021-08-06 23:28:10 +02:00
|
|
|
description = "Dynamic library ffi for deno"
|
|
|
|
|
|
|
|
[lib]
|
|
|
|
path = "lib.rs"
|
|
|
|
|
|
|
|
[dependencies]
|
2022-11-22 21:07:35 +01:00
|
|
|
deno_core.workspace = true
|
|
|
|
dlopen.workspace = true
|
2022-09-07 08:53:56 +02:00
|
|
|
dynasmrt = "1.2.3"
|
2023-01-07 19:58:10 -08:00
|
|
|
libffi = "3.1.0"
|
2022-11-22 21:07:35 +01:00
|
|
|
serde.workspace = true
|
2023-02-14 21:11:59 -07:00
|
|
|
serde-value = "0.7"
|
|
|
|
serde_json = "1.0"
|
2022-11-22 21:07:35 +01:00
|
|
|
tokio.workspace = true
|
2021-10-06 05:43:56 +05:30
|
|
|
|
|
|
|
[target.'cfg(windows)'.dependencies]
|
2022-11-22 21:07:35 +01:00
|
|
|
winapi = { workspace = true, features = ["errhandlingapi", "minwindef", "ntdef", "winbase", "winnt"] }
|