mirror of
https://github.com/denoland/deno.git
synced 2025-03-10 14:17:49 -04:00

Bumped versions for 1.43.2 Please ensure: - [ ] Target branch is correct (`vX.XX` if a patch release, `main` if minor) - [ ] Crate versions are bumped correctly - [ ] Releases.md is updated correctly (think relevancy and remove reverts) To make edits to this PR: ```shell git fetch upstream release_1_43.2 && git checkout -b release_1_43.2 upstream/release_1_43.2 ``` cc @nathanwhit --------- Co-authored-by: nathanwhit <nathanwhit@users.noreply.github.com> Co-authored-by: Nathan Whitaker <nathan@deno.com>
29 lines
701 B
TOML
29 lines
701 B
TOML
# Copyright 2018-2024 the Deno authors. All rights reserved. MIT license.
|
|
|
|
[package]
|
|
name = "deno_io"
|
|
version = "0.60.0"
|
|
authors.workspace = true
|
|
edition.workspace = true
|
|
license.workspace = true
|
|
readme = "README.md"
|
|
repository.workspace = true
|
|
description = "IO primitives for Deno extensions"
|
|
|
|
[lib]
|
|
path = "lib.rs"
|
|
|
|
[dependencies]
|
|
async-trait.workspace = true
|
|
deno_core.workspace = true
|
|
filetime.workspace = true
|
|
fs3.workspace = true
|
|
once_cell.workspace = true
|
|
tokio.workspace = true
|
|
|
|
[target.'cfg(not(windows))'.dependencies]
|
|
os_pipe.workspace = true
|
|
|
|
[target.'cfg(windows)'.dependencies]
|
|
winapi = { workspace = true, features = ["winbase", "processenv", "errhandlingapi"] }
|
|
rand.workspace = true
|