mirror of
https://github.com/denoland/deno.git
synced 2024-11-30 16:40:57 -05:00
76ebf567e2
When using a prefix or suffix containing an invalid filename character, it's not entirely clear where the errors come from. We make these errors more consistent across platforms. In addition, all permission prompts for tempfile and tempdir were printing the same API name. We also take the opportunity to make the tempfile random space larger by 2x (using a base32-encoded u64 rather than a hex-encoded u32).
37 lines
793 B
TOML
37 lines
793 B
TOML
# Copyright 2018-2024 the Deno authors. All rights reserved. MIT license.
|
|
|
|
[package]
|
|
name = "deno_fs"
|
|
version = "0.48.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
|
|
filetime.workspace = true
|
|
fs3.workspace = true
|
|
libc.workspace = true
|
|
log.workspace = true
|
|
rand.workspace = true
|
|
rayon = "1.8.0"
|
|
serde.workspace = true
|
|
tokio.workspace = true
|
|
|
|
[target.'cfg(unix)'.dependencies]
|
|
nix.workspace = true
|
|
|
|
[target.'cfg(windows)'.dependencies]
|
|
winapi = { workspace = true, features = ["winbase"] }
|