deno/ext/ffi/Cargo.toml
Kayla Washburn 215f3d4c8e
v1.23.1 (#14954)
1.23.1 (#14952)

Co-authored-by: aslilac <aslilac@users.noreply.github.com>
Co-authored-by: Kayla Washburn <mckayla@hey.com>

Co-authored-by: denobot <33910674+denobot@users.noreply.github.com>
Co-authored-by: aslilac <aslilac@users.noreply.github.com>
2022-06-23 15:27:41 -06:00

25 lines
677 B
TOML

# Copyright 2018-2022 the Deno authors. All rights reserved. MIT license.
[package]
name = "deno_ffi"
version = "0.45.0"
authors = ["the Deno authors"]
edition = "2021"
license = "MIT"
readme = "README.md"
repository = "https://github.com/denoland/deno"
description = "Dynamic library ffi for deno"
[lib]
path = "lib.rs"
[dependencies]
deno_core = { version = "0.140.0", path = "../../core" }
dlopen = "0.1.8"
libffi = "3.0.0"
serde = { version = "1.0.129", features = ["derive"] }
tokio = { version = "1.17", features = ["full"] }
[target.'cfg(windows)'.dependencies]
winapi = { version = "0.3.9", features = ["errhandlingapi", "minwindef", "ntdef", "winbase", "winnt"] }