summaryrefslogtreecommitdiff
path: root/ext/ffi
diff options
context:
space:
mode:
authorLeo Kettmeir <crowlkats@toaxl.com>2022-11-22 21:07:35 +0100
committerGitHub <noreply@github.com>2022-11-22 21:07:35 +0100
commit13e3acf71dd8443d8d158087d8c0a0cb72167f9a (patch)
tree7455c069643f10bc9de5d6c8993defddeda378fd /ext/ffi
parent14904f6a2cac6b288a893add3e129c2668ea3a5a (diff)
chore: workspace inheritance (#16343)
Diffstat (limited to 'ext/ffi')
-rw-r--r--ext/ffi/Cargo.toml18
1 files changed, 9 insertions, 9 deletions
diff --git a/ext/ffi/Cargo.toml b/ext/ffi/Cargo.toml
index 7ad922576..3da3881c3 100644
--- a/ext/ffi/Cargo.toml
+++ b/ext/ffi/Cargo.toml
@@ -3,23 +3,23 @@
[package]
name = "deno_ffi"
version = "0.65.0"
-authors = ["the Deno authors"]
-edition = "2021"
-license = "MIT"
+authors.workspace = true
+edition.workspace = true
+license.workspace = true
readme = "README.md"
-repository = "https://github.com/denoland/deno"
+repository.workspace = true
description = "Dynamic library ffi for deno"
[lib]
path = "lib.rs"
[dependencies]
-deno_core = { version = "0.160.0", path = "../../core" }
-dlopen = "0.1.8"
+deno_core.workspace = true
+dlopen.workspace = true
dynasmrt = "1.2.3"
libffi = "3.0.0"
-serde = { version = "1.0.129", features = ["derive"] }
-tokio = { version = "1.21", features = ["full"] }
+serde.workspace = true
+tokio.workspace = true
[target.'cfg(windows)'.dependencies]
-winapi = { version = "0.3.9", features = ["errhandlingapi", "minwindef", "ntdef", "winbase", "winnt"] }
+winapi = { workspace = true, features = ["errhandlingapi", "minwindef", "ntdef", "winbase", "winnt"] }