2021-04-20 01:27:36 -04:00
|
|
|
# Copyright 2018-2021 the Deno authors. All rights reserved. MIT license.
|
2021-04-06 06:55:05 -04:00
|
|
|
|
|
|
|
[package]
|
|
|
|
name = "deno_file"
|
2021-04-23 09:05:12 -04:00
|
|
|
version = "0.4.0"
|
2021-04-06 06:55:05 -04:00
|
|
|
edition = "2018"
|
|
|
|
description = "File API implementation for Deno"
|
|
|
|
authors = ["the Deno authors"]
|
|
|
|
license = "MIT"
|
|
|
|
readme = "README.md"
|
|
|
|
repository = "https://github.com/denoland/deno"
|
|
|
|
|
|
|
|
[lib]
|
|
|
|
path = "lib.rs"
|
|
|
|
|
|
|
|
[dependencies]
|
2021-04-23 09:05:12 -04:00
|
|
|
deno_core = { version = "0.86.0", path = "../../core" }
|
2021-04-07 09:22:14 -04:00
|
|
|
uuid = { version = "0.8.2", features = ["v4"] }
|