summaryrefslogtreecommitdiff
path: root/ext/ffi/Cargo.toml
blob: e9f289f623de5db5c63b9d3a4928eb3e8e701e21 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
# Copyright 2018-2021 the Deno authors. All rights reserved. MIT license.

[package]
name = "deno_ffi"
version = "0.5.0"
authors = ["the Deno authors"]
edition = "2018"
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.100.0", path = "../../core" }
dlopen = "0.1.8"
libffi = { version = "=0.0.7", package = "deno-libffi" }
serde = { version = "1.0.129", features = ["derive"] }