1
0
Fork 0
mirror of https://github.com/denoland/deno.git synced 2025-01-18 20:04:03 -05:00
denoland-deno/tests/Cargo.toml
David Sherret 57dd66ec3d
refactor: move denort to separate crate (#27688)
This slightly degrades the performance of CJS export analysis on
subsequent runs because I changed it to no longer cache in the DENO_DIR
with this PR (denort now properly has no idea about the DENO_DIR). We'll
have to change it to embed this data in the binary and that will also
allow us to get rid of swc in denort (will do that in a follow-up PR).
2025-01-17 20:39:29 +00:00

70 lines
1.7 KiB
TOML

# Copyright 2018-2025 the Deno authors. MIT license.
[package]
name = "cli_tests"
version = "0.0.0"
authors.workspace = true
autotests = false
edition.workspace = true
license.workspace = true
repository.workspace = true
[lib]
path = "lib.rs"
[features]
upgrade = []
[[test]]
name = "integration_tests"
path = "integration/mod.rs"
[[test]]
name = "specs"
path = "specs/mod.rs"
harness = false
[[test]]
name = "node_compat_tests"
path = "node_compat/test_runner.rs"
[dev-dependencies]
anyhow.workspace = true
bytes.workspace = true
chrono = { workspace = true, features = ["now"] }
deno_bench_util.workspace = true
deno_cache_dir = { workspace = true }
deno_lockfile.workspace = true
deno_semver.workspace = true
deno_terminal.workspace = true
deno_unsync.workspace = true
fastwebsockets = { workspace = true, features = ["upgrade", "unstable-split"] }
file_test_runner = "0.7.3"
flaky_test = "=0.2.2"
hickory-client = "0.25.0-alpha.4"
hickory-proto = "0.25.0-alpha.4"
hickory-server = "0.25.0-alpha.4"
http.workspace = true
http-body-util.workspace = true
hyper.workspace = true
hyper-util.workspace = true
once_cell.workspace = true
os_pipe.workspace = true
pretty_assertions.workspace = true
regex.workspace = true
reqwest.workspace = true
rustls.workspace = true
rustls-pemfile.workspace = true
rustls-tokio-stream.workspace = true
serde.workspace = true
serde_json.workspace = true
sys_traits = { workspace = true, features = ["real", "getrandom", "libc", "winapi"] }
test_util.workspace = true
tokio.workspace = true
tower-lsp.workspace = true
url.workspace = true
uuid = { workspace = true, features = ["serde"] }
zeromq.workspace = true
[target.'cfg(unix)'.dev-dependencies]
nix.workspace = true