mirror of
https://github.com/denoland/deno.git
synced 2024-10-31 09:14:20 -04:00
98d062e3dc
Co-authored-by: kt3k <kt3k@users.noreply.github.com>
48 lines
1.3 KiB
TOML
48 lines
1.3 KiB
TOML
# Copyright 2018-2022 the Deno authors. All rights reserved. MIT license.
|
|
|
|
[package]
|
|
name = "deno_core"
|
|
version = "0.162.0"
|
|
authors.workspace = true
|
|
edition.workspace = true
|
|
license.workspace = true
|
|
readme = "README.md"
|
|
repository.workspace = true
|
|
description = "A modern JavaScript/TypeScript runtime built with V8, Rust, and Tokio"
|
|
|
|
[lib]
|
|
path = "lib.rs"
|
|
|
|
[features]
|
|
default = ["v8_use_custom_libcxx"]
|
|
v8_use_custom_libcxx = ["v8/use_custom_libcxx"]
|
|
|
|
[dependencies]
|
|
anyhow.workspace = true
|
|
bytes.workspace = true
|
|
deno_ops.workspace = true
|
|
futures.workspace = true
|
|
# Stay on 1.6 to avoid a dependency cycle in ahash https://github.com/tkaitchuck/aHash/issues/95
|
|
# Projects not depending on ahash are unafected as cargo will pull any 1.X that is >= 1.6.
|
|
indexmap = "1.6"
|
|
libc.workspace = true
|
|
log.workspace = true
|
|
once_cell.workspace = true
|
|
parking_lot.workspace = true
|
|
pin-project.workspace = true
|
|
serde.workspace = true
|
|
serde_json = { workspace = true, features = ["preserve_order"] }
|
|
serde_v8.workspace = true
|
|
smallvec.workspace = true
|
|
sourcemap = "6.1"
|
|
url.workspace = true
|
|
v8.workspace = true
|
|
|
|
[[example]]
|
|
name = "http_bench_json_ops"
|
|
path = "examples/http_bench_json_ops.rs"
|
|
|
|
# These dependencies are only used for the 'http_bench_*_ops' examples.
|
|
[dev-dependencies]
|
|
deno_ast.workspace = true
|
|
tokio.workspace = true
|