0
0
Fork 0
mirror of https://github.com/denoland/deno.git synced 2024-10-31 09:14:20 -04:00
denoland-deno/core/Cargo.toml

49 lines
1.3 KiB
TOML
Raw Normal View History

# Copyright 2018-2023 the Deno authors. All rights reserved. MIT license.
2022-11-22 15:07:35 -05:00
[package]
name = "deno_core"
version = "0.165.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"
[lib]
path = "lib.rs"
[features]
default = ["v8_use_custom_libcxx"]
v8_use_custom_libcxx = ["v8/use_custom_libcxx"]
[dependencies]
2022-11-22 15:07:35 -05:00
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"
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
[[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]
2022-11-22 15:07:35 -05:00
deno_ast.workspace = true
tokio.workspace = true