2023-01-02 16:00:42 -05:00
|
|
|
# Copyright 2018-2023 the Deno authors. All rights reserved. MIT license.
|
2022-11-22 15:07:35 -05:00
|
|
|
|
2019-02-26 19:23:30 -05:00
|
|
|
[package]
|
2020-01-05 11:56:18 -05:00
|
|
|
name = "deno_core"
|
2023-02-23 18:16:04 -05:00
|
|
|
version = "0.172.0"
|
2022-11-22 15:07:35 -05:00
|
|
|
authors.workspace = true
|
|
|
|
edition.workspace = true
|
|
|
|
license.workspace = true
|
2019-04-04 09:35:52 -04:00
|
|
|
readme = "README.md"
|
2022-11-22 15:07:35 -05:00
|
|
|
repository.workspace = true
|
2021-09-16 02:25:06 -04:00
|
|
|
description = "A modern JavaScript/TypeScript runtime built with V8, Rust, and Tokio"
|
2019-02-26 19:23:30 -05:00
|
|
|
|
|
|
|
[lib]
|
|
|
|
path = "lib.rs"
|
|
|
|
|
2022-07-05 17:01:41 -04:00
|
|
|
[features]
|
|
|
|
default = ["v8_use_custom_libcxx"]
|
|
|
|
v8_use_custom_libcxx = ["v8/use_custom_libcxx"]
|
2023-02-20 15:45:34 -05:00
|
|
|
include_js_files_for_snapshotting = []
|
2022-07-05 17:01:41 -04:00
|
|
|
|
2019-02-26 19:23:30 -05:00
|
|
|
[dependencies]
|
2022-11-22 15:07:35 -05:00
|
|
|
anyhow.workspace = true
|
|
|
|
bytes.workspace = true
|
|
|
|
deno_ops.workspace = true
|
|
|
|
futures.workspace = true
|
2022-07-28 06:46:10 -04:00
|
|
|
# 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"
|
2022-11-22 15:07:35 -05:00
|
|
|
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
|
2022-09-16 19:11:30 -04:00
|
|
|
sourcemap = "6.1"
|
2022-11-22 15:07:35 -05:00
|
|
|
url.workspace = true
|
|
|
|
v8.workspace = true
|
2020-01-05 09:19:29 -05:00
|
|
|
|
2020-08-21 11:14:47 -04:00
|
|
|
[[example]]
|
|
|
|
name = "http_bench_json_ops"
|
2023-01-18 10:09:54 -05:00
|
|
|
path = "examples/http_bench_json_ops/main.rs"
|
2019-04-16 17:53:43 -04:00
|
|
|
|
2020-12-10 14:45:45 -05:00
|
|
|
# These dependencies are only used for the 'http_bench_*_ops' examples.
|
2020-02-06 18:34:40 -05:00
|
|
|
[dev-dependencies]
|
2022-11-22 15:07:35 -05:00
|
|
|
deno_ast.workspace = true
|
|
|
|
tokio.workspace = true
|