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-11-10 02:42:18 -05:00
|
|
|
version = "0.87.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
|
2024-05-08 22:45:06 -04:00
|
|
|
log.workspace = true
|
2023-03-04 19:39:48 -05:00
|
|
|
once_cell.workspace = true
|
2024-08-15 12:38:46 -04:00
|
|
|
pin-project.workspace = true
|
2023-03-04 19:39:48 -05:00
|
|
|
tokio.workspace = true
|
2024-08-15 12:38:46 -04:00
|
|
|
uuid.workspace = true
|
2023-03-04 19:39:48 -05:00
|
|
|
|
2024-02-21 20:00:57 -05:00
|
|
|
[target.'cfg(not(windows))'.dependencies]
|
|
|
|
os_pipe.workspace = true
|
2024-08-15 12:38:46 -04:00
|
|
|
libc.workspace = true
|
2024-02-21 20:00:57 -05:00
|
|
|
|
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
|
2024-05-29 12:53:04 -04:00
|
|
|
parking_lot.workspace = true
|
2024-08-15 12:38:46 -04:00
|
|
|
windows-sys.workspace = true
|