2023-03-04 19:39:48 -05:00
|
|
|
# Copyright 2018-2023 the Deno authors. All rights reserved. MIT license.
|
|
|
|
|
|
|
|
[package]
|
|
|
|
name = "deno_io"
|
2023-03-10 03:39:29 -05:00
|
|
|
version = "0.2.0"
|
2023-03-04 19:39:48 -05:00
|
|
|
authors.workspace = true
|
|
|
|
edition.workspace = true
|
|
|
|
license.workspace = true
|
|
|
|
readme = "README.md"
|
|
|
|
repository.workspace = true
|
|
|
|
description = "IO promitives for Deno extensions"
|
|
|
|
|
|
|
|
[lib]
|
|
|
|
path = "lib.rs"
|
|
|
|
|
|
|
|
[dependencies]
|
|
|
|
deno_core.workspace = true
|
|
|
|
once_cell.workspace = true
|
|
|
|
tokio.workspace = true
|
|
|
|
|
|
|
|
[target.'cfg(unix)'.dependencies]
|
|
|
|
nix.workspace = true
|
|
|
|
|
|
|
|
[target.'cfg(windows)'.dependencies]
|
|
|
|
winapi = { workspace = true, features = ["winbase"] }
|