2023-03-04 19:39:48 -05:00
|
|
|
# Copyright 2018-2023 the Deno authors. All rights reserved. MIT license.
|
|
|
|
|
|
|
|
[package]
|
|
|
|
name = "deno_io"
|
2023-11-17 03:57:25 -05:00
|
|
|
version = "0.34.0"
|
2023-03-04 19:39:48 -05:00
|
|
|
authors.workspace = true
|
|
|
|
edition.workspace = true
|
|
|
|
license.workspace = true
|
|
|
|
readme = "README.md"
|
|
|
|
repository.workspace = true
|
2023-06-26 09:10:27 -04:00
|
|
|
description = "IO primitives for Deno extensions"
|
2023-03-04 19:39:48 -05:00
|
|
|
|
|
|
|
[lib]
|
|
|
|
path = "lib.rs"
|
|
|
|
|
|
|
|
[dependencies]
|
2023-05-04 14:28:42 -04:00
|
|
|
async-trait.workspace = true
|
2023-03-04 19:39:48 -05:00
|
|
|
deno_core.workspace = true
|
2023-05-04 14:28:42 -04:00
|
|
|
filetime.workspace = true
|
|
|
|
fs3.workspace = true
|
2023-03-04 19:39:48 -05:00
|
|
|
once_cell.workspace = true
|
|
|
|
tokio.workspace = true
|
|
|
|
|
|
|
|
[target.'cfg(windows)'.dependencies]
|
2023-03-28 19:29:10 -04:00
|
|
|
winapi = { workspace = true, features = ["winbase", "processenv"] }
|