2024-01-01 14:58:21 -05:00
|
|
|
# Copyright 2018-2024 the Deno authors. All rights reserved. MIT license.
|
2021-08-06 17:28:10 -04:00
|
|
|
|
|
|
|
[package]
|
|
|
|
name = "deno_ffi"
|
2024-11-05 20:27:14 -05:00
|
|
|
version = "0.163.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
|
2024-06-06 23:37:53 -04:00
|
|
|
deno_permissions.workspace = true
|
2023-11-05 04:29:26 -05:00
|
|
|
dlopen2.workspace = true
|
2022-09-07 02:53:56 -04:00
|
|
|
dynasmrt = "1.2.3"
|
2023-06-08 11:16:24 -04:00
|
|
|
libffi = "=3.2.0"
|
2023-06-29 17:25:48 -04:00
|
|
|
libffi-sys = "=2.3.0"
|
2024-05-08 22:45:06 -04:00
|
|
|
log.workspace = true
|
2024-10-24 00:11:38 -04:00
|
|
|
num-bigint.workspace = true
|
2022-11-22 15:07:35 -05:00
|
|
|
serde.workspace = true
|
2023-02-14 23:11:59 -05:00
|
|
|
serde-value = "0.7"
|
|
|
|
serde_json = "1.0"
|
2024-10-14 18:05:49 -04:00
|
|
|
thiserror.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"] }
|
2024-07-29 12:58:04 -04:00
|
|
|
|
|
|
|
[lints.rust]
|
|
|
|
unexpected_cfgs = { level = "warn", check-cfg = ['cfg(target_aarch, values("x86_64", "aarch64"))'] }
|