2024-01-01 14:58:21 -05:00
|
|
|
# Copyright 2018-2024 the Deno authors. All rights reserved. MIT license.
|
2023-03-04 19:39:48 -05:00
|
|
|
|
|
|
|
[package]
|
|
|
|
name = "deno_io"
|
2024-04-15 22:41:59 -04:00
|
|
|
version = "0.57.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
|
|
|
|
|
2024-02-21 20:00:57 -05:00
|
|
|
[target.'cfg(not(windows))'.dependencies]
|
|
|
|
os_pipe.workspace = true
|
|
|
|
|
2023-03-04 19:39:48 -05:00
|
|
|
[target.'cfg(windows)'.dependencies]
|
2024-02-26 23:21:14 -05:00
|
|
|
winapi = { workspace = true, features = ["winbase", "processenv", "errhandlingapi"] }
|
2024-02-21 20:00:57 -05:00
|
|
|
rand.workspace = true
|