2024-01-01 14:58:21 -05:00
|
|
|
# Copyright 2018-2024 the Deno authors. All rights reserved. MIT license.
|
2023-03-04 20:39:48 -04:00
|
|
|
|
|
|
|
[package]
|
|
|
|
name = "deno_io"
|
2024-07-23 06:34:15 +09:00
|
|
|
version = "0.72.0"
|
2023-03-04 20:39:48 -04:00
|
|
|
authors.workspace = true
|
|
|
|
edition.workspace = true
|
|
|
|
license.workspace = true
|
|
|
|
readme = "README.md"
|
|
|
|
repository.workspace = true
|
2023-06-26 15:10:27 +02:00
|
|
|
description = "IO primitives for Deno extensions"
|
2023-03-04 20:39:48 -04:00
|
|
|
|
|
|
|
[lib]
|
|
|
|
path = "lib.rs"
|
|
|
|
|
|
|
|
[dependencies]
|
2023-05-04 14:28:42 -04:00
|
|
|
async-trait.workspace = true
|
2023-03-04 20:39:48 -04:00
|
|
|
deno_core.workspace = true
|
2023-05-04 14:28:42 -04:00
|
|
|
filetime.workspace = true
|
|
|
|
fs3.workspace = true
|
2024-05-08 22:45:06 -04:00
|
|
|
log.workspace = true
|
2023-03-04 20:39:48 -04:00
|
|
|
once_cell.workspace = true
|
|
|
|
tokio.workspace = true
|
|
|
|
|
2024-02-21 18:00:57 -07:00
|
|
|
[target.'cfg(not(windows))'.dependencies]
|
|
|
|
os_pipe.workspace = true
|
|
|
|
|
2023-03-04 20:39:48 -04:00
|
|
|
[target.'cfg(windows)'.dependencies]
|
2024-02-26 21:21:14 -07:00
|
|
|
winapi = { workspace = true, features = ["winbase", "processenv", "errhandlingapi"] }
|
2024-02-21 18:00:57 -07:00
|
|
|
rand.workspace = true
|
2024-05-29 09:53:04 -07:00
|
|
|
parking_lot.workspace = true
|