2024-01-01 14:58:21 -05:00
|
|
|
# Copyright 2018-2024 the Deno authors. All rights reserved. MIT license.
|
2023-03-07 04:13:44 -05:00
|
|
|
|
|
|
|
[package]
|
|
|
|
name = "deno_fs"
|
2024-11-10 02:42:18 -05:00
|
|
|
version = "0.87.0"
|
2023-03-07 04:13:44 -05:00
|
|
|
authors.workspace = true
|
|
|
|
edition.workspace = true
|
|
|
|
license.workspace = true
|
|
|
|
readme = "README.md"
|
|
|
|
repository.workspace = true
|
|
|
|
description = "Ops for interacting with the file system"
|
|
|
|
|
|
|
|
[lib]
|
|
|
|
path = "lib.rs"
|
|
|
|
|
2023-05-08 11:02:02 -04:00
|
|
|
[features]
|
2024-07-23 17:34:46 -04:00
|
|
|
sync_fs = []
|
2023-05-08 11:02:02 -04:00
|
|
|
|
2023-03-07 04:13:44 -05:00
|
|
|
[dependencies]
|
2023-04-12 09:13:32 -04:00
|
|
|
async-trait.workspace = true
|
2024-02-21 15:11:04 -05:00
|
|
|
base32.workspace = true
|
2023-03-07 04:13:44 -05:00
|
|
|
deno_core.workspace = true
|
|
|
|
deno_io.workspace = true
|
2024-09-28 07:55:01 -04:00
|
|
|
deno_path_util.workspace = true
|
2024-06-06 23:37:53 -04:00
|
|
|
deno_permissions.workspace = true
|
2023-05-04 14:28:42 -04:00
|
|
|
filetime.workspace = true
|
2023-03-07 04:13:44 -05:00
|
|
|
libc.workspace = true
|
2023-04-12 09:13:32 -04:00
|
|
|
rand.workspace = true
|
2024-01-05 07:58:33 -05:00
|
|
|
rayon = "1.8.0"
|
2023-03-07 04:13:44 -05:00
|
|
|
serde.workspace = true
|
2024-10-18 09:38:17 -04:00
|
|
|
thiserror.workspace = true
|
2023-03-07 04:13:44 -05:00
|
|
|
|
|
|
|
[target.'cfg(unix)'.dependencies]
|
2024-10-25 06:53:34 -04:00
|
|
|
nix = { workspace = true, features = ["fs", "user"] }
|
2023-03-07 04:13:44 -05:00
|
|
|
|
|
|
|
[target.'cfg(windows)'.dependencies]
|
|
|
|
winapi = { workspace = true, features = ["winbase"] }
|
2024-07-17 22:43:40 -04:00
|
|
|
windows-sys.workspace = true
|
2024-03-08 22:37:29 -05:00
|
|
|
junction.workspace = true
|