summaryrefslogtreecommitdiff
path: root/ext/fs/Cargo.toml
blob: 606c00ad8c9d9607f24c17caea027f712105ff6a (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
# Copyright 2018-2024 the Deno authors. All rights reserved. MIT license.

[package]
name = "deno_fs"
version = "0.81.0"
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"

[features]
sync_fs = []

[dependencies]
async-trait.workspace = true
base32.workspace = true
deno_core.workspace = true
deno_io.workspace = true
deno_path_util.workspace = true
deno_permissions.workspace = true
filetime.workspace = true
libc.workspace = true
rand.workspace = true
rayon = "1.8.0"
serde.workspace = true

[target.'cfg(unix)'.dependencies]
nix.workspace = true

[target.'cfg(windows)'.dependencies]
winapi = { workspace = true, features = ["winbase"] }
windows-sys.workspace = true
junction.workspace = true