mirror of
https://github.com/denoland/deno.git
synced 2025-02-01 12:16:11 -05:00
94dc5b16f5
This is the release commit being forwarded back to main for 2.1.6 Co-authored-by: bartlomieju <bartlomieju@users.noreply.github.com> Co-authored-by: Bartek Iwańczuk <biwanczuk@gmail.com>
37 lines
1 KiB
TOML
37 lines
1 KiB
TOML
# Copyright 2018-2025 the Deno authors. MIT license.
|
|
|
|
[package]
|
|
name = "deno_lib"
|
|
version = "0.2.0"
|
|
authors.workspace = true
|
|
edition.workspace = true
|
|
license.workspace = true
|
|
readme = "README.md"
|
|
repository.workspace = true
|
|
description = "Shared code between the Deno CLI and denort"
|
|
|
|
[lib]
|
|
path = "lib.rs"
|
|
|
|
[dependencies]
|
|
deno_cache_dir.workspace = true
|
|
deno_error.workspace = true
|
|
deno_fs = { workspace = true, features = ["sync_fs"] }
|
|
deno_node = { workspace = true, features = ["sync_fs"] }
|
|
deno_path_util.workspace = true
|
|
deno_resolver = { workspace = true, features = ["sync"] }
|
|
deno_runtime.workspace = true
|
|
deno_terminal.workspace = true
|
|
faster-hex.workspace = true
|
|
log.workspace = true
|
|
node_resolver = { workspace = true, features = ["sync"] }
|
|
parking_lot.workspace = true
|
|
ring.workspace = true
|
|
serde = { workspace = true, features = ["derive"] }
|
|
sys_traits = { workspace = true, features = ["getrandom"] }
|
|
thiserror.workspace = true
|
|
tokio.workspace = true
|
|
url.workspace = true
|
|
|
|
[dev-dependencies]
|
|
test_util.workspace = true
|