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-10-17 17:11:16 -04:00
|
|
|
version = "0.60.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]
|
2022-10-17 17:11:16 -04:00
|
|
|
deno_core = { version = "0.155.0", path = "../../core" }
|
2021-08-06 17:28:10 -04:00
|
|
|
dlopen = "0.1.8"
|
2022-09-07 02:53:56 -04:00
|
|
|
dynasmrt = "1.2.3"
|
2022-05-05 06:41:59 -04:00
|
|
|
libffi = "3.0.0"
|
2021-09-02 17:38:44 -04:00
|
|
|
serde = { version = "1.0.129", features = ["derive"] }
|
2022-09-16 19:11:30 -04:00
|
|
|
tokio = { version = "1.21", 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"] }
|