mirror of
https://github.com/denoland/deno.git
synced 2024-11-01 09:24:20 -04:00
55063dd8e8
For some reason, the unit tests for Deno.remove() were not being imported to unit_tests.ts and, consequently, not being executed. Thus, I imported them, refactored some existent ones and wrote new ones for the symlink removal case. Since the creation of a symlink is not implemented for Windows yet, assertions that consider this state were added when the tests are executed in this OS.
56 lines
1.1 KiB
TOML
56 lines
1.1 KiB
TOML
# Copyright 2018-2020 the Deno authors. All rights reserved. MIT license.
|
|
# Dummy package info required by `cargo fetch`.
|
|
# Use tools/sync_third_party.py to install deps after editing this file.
|
|
# Deno does not build with cargo. Deno uses a build system called gn.
|
|
# See build_extra/rust/BUILD.gn for the manually built configuration of rust
|
|
# crates.
|
|
|
|
[workspace]
|
|
members = [
|
|
"./",
|
|
"core",
|
|
]
|
|
|
|
[[bin]]
|
|
name = "deno"
|
|
path = "cli/main.rs"
|
|
|
|
[package]
|
|
name = "deno"
|
|
version = "0.3.4"
|
|
edition = "2018"
|
|
|
|
[dependencies]
|
|
deno_core = { path = "./core" }
|
|
|
|
ansi_term = "0.11.0"
|
|
atty = "0.2.11"
|
|
dirs = "1.0.5"
|
|
flatbuffers = "0.5.0"
|
|
futures = "0.1.25"
|
|
getopts = "0.2.18"
|
|
http = "0.1.16"
|
|
hyper = "0.12.24"
|
|
hyper-rustls = "0.16.0"
|
|
integer-atomics = "1.0.2"
|
|
lazy_static = "1.3.0"
|
|
libc = "0.2.49"
|
|
log = "0.4.6"
|
|
rand = "0.6.5"
|
|
regex = "1.1.0"
|
|
remove_dir_all = "0.5.2"
|
|
ring = "0.14.6"
|
|
rustyline = "3.0.0"
|
|
serde_json = "1.0.38"
|
|
source-map-mappings = "0.5.0"
|
|
tempfile = "3.0.7"
|
|
tokio = "0.1.15"
|
|
tokio-executor = "0.1.6"
|
|
tokio-fs = "0.1.5"
|
|
tokio-io = "0.1.11"
|
|
tokio-process = "0.2.3"
|
|
tokio-threadpool = "0.1.11"
|
|
url = "1.7.2"
|
|
|
|
[target.'cfg(windows)'.dependencies]
|
|
winapi = "0.3.6"
|